Hello,
i have create a popup windows with a grid that work fine (i got also a formular in windows that works fine too).
But when i try to add another DIV to display other infos in HTML i got an error an jqxwindows.js: Uncaught Error: Invalid strucure !
Code that works only with a grid:
<div id=”NameOfMyWindows”>
<div>My Title</div>
<div id=”MyGrid”></div>
</div>
Code that return javascript error:
<div id=”NameOfMyWindows”>
<div>My Title</div>
<div id=”MyHtmlText”></div>
<div id=”MyGrid”></div>
</div>