I think ie does permit replacing a <table> element, but not <tr> <td> <th> <tbody> <tfoot> <thead> <col> <colgroup>
So you have to add the markup container (don't forget to setOutputMarkupId(true) on it) to the ajax request target instead of the dataview. Martijn On 12/7/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > yes, ie doesnt let you use outerhtml on table elements, simply replace the > <table wicket:id="container" with <div > wicket:id="container"><table>... > > -igor > > > > On 12/7/06, carbonbasednerd <[EMAIL PROTECTED]> wrote: > > > > I put the data view into a markupcontainerso the html looks like this: > > > > <table wicket:id="container"> > > <tbody> > > <tr wicket:id="campaignDV"> > > <td><input wicket:id="name"></td> > > </tr> > > </tbody> > > <tfoot> > > <tr> > > <td > wicket:id="navigator"></td> > > </tr> > > </tfoot> > > </table> > > > > I get an Unknown runtime error. I dug around and found that this might be > > because of IE and some troubles with <tr> tags? didn't find a solution to > > this though. > > > > > > try putting the dataview into a markupcontainer > > > > -igor > > > > > > On 12/6/06, carbonbasednerd < [EMAIL PROTECTED]> wrote: > > > > > > > > > Hi, I searched the forums and found one question about > AjaxPagingNavigator > > > not working with DataView - but there was no response to it. > > > > > > Is the DataView unable to work with AjaxPagingNavigator or do I need to > do > > > something else to get it to work? > > > > -- > > View this message in context: > http://www.nabble.com/DataView-and-Ajax-tf2771602.html#a7745724 > > Sent from the Wicket - User mailing list archive at Nabble.com. > > > > > > > ------------------------------------------------------------------------- > > Take Surveys. Earn Cash. Influence the Future of IT > > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > > opinions on IT & business topics through brief surveys - and earn cash > > > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > _______________________________________________ > > Wicket-user mailing list > > [email protected] > > https://lists.sourceforge.net/lists/listinfo/wicket-user > > > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > _______________________________________________ > Wicket-user mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/wicket-user > > > -- <a href="http://www.thebeststuffintheworld.com/vote_for/wicket">Vote</a> for <a href="http://www.thebeststuffintheworld.com/stuff/wicket">Wicket</a> at the <a href="http://www.thebeststuffintheworld.com/">Best Stuff in the World!</a> ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Wicket-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/wicket-user
