Hello Kyano,
You can set the content of any of the windows inside jqxDocking using the following code:
JavaScript
$('#docking').jqxDocking({ theme: theme, orientation: 'horizontal', width: 550, mode: 'default' });$.ajax({ url: 'test.txt', success: function (data) { $('#window0').jqxWindow('setContent', data); }});
In the success callback the content of the window with id window0 is set to “Sample content“.
HTML
<div id="docking" style="float: left;"> <div style="overflow: hidden;"> <div id="window0" style="height: 100px"> <div> CISC</div> <div>Content about CISC</div> </div> <div id="window1" style="height: 80px"> <div> Database management system</div> <div>DBMS content</div> </div> </div> <div style="overflow: hidden;"> <div id="window2" style="height: 80px"> <div> RISC</div> <div>RISC content</div> </div> </div></div>
Best regards,
Minko
jQWidgets Team
http://jqwidgets.com/