NetTalk Central

NetTalk Web Server => Web Server - Ask For Help => Topic started by: jorgemir on March 24, 2011, 02:14:32 PM

Title: Popup Form can not accomodate xhtml data
Post by: jorgemir on March 24, 2011, 02:14:32 PM
Hi. After tests, I see that a popup form without xhtm shows the data. If I including some xhtm into the form, no matter where it goes, the form shows nothing. Is like it can not calculate the vertical length that it needs to show all the data, so it shows nothing.
Thanks
Jorge

Title: Re: Popup Form can not accomodate xhtml data
Post by: Bruce on March 24, 2011, 10:20:47 PM
It means your xHtml is not valid XML.
Use Firebug to inspect the xml coming to the browser - there's an xml tab there to show you xml errors.

Or paste your custom xHtml here and someone will spot your mistake for you.

For example;
<br> is valid html, but not valid xhtml. For xHtml it needs a closing tag,
<br></br>
or <br /> for short.

Cheers
Bruce