Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by abidini on Jun 05, 2007 14:28
open dhtmlx forum
Populate a grid from inside the html page directly and NOT from a XML file

Can you give me an example on how to populate a grid from inside the html page directly and NOT from a XML file?
Answer posted on Jun 05, 2007 15:54
Grid can load data from XML island (IE only ) by
    <xml id="island">
       <rows>
       <row id="1">

    mygrid.parseXML("island");

Or from XML strnig ( FF, IE )
        <textarea id="xml_string" style='display:none'>
       <rows>
       <row id="1">
      <cell>500</cell>

    mygrid.loadXMLString(document.getElementById('xml_string').value);  

Please check attached samples
Attachments (1)
Answer posted by Alexandra (Support) on Dec 05, 2014 17:03

Having solved the problem mentioned above, you may also look through the possible related problems with build your own website and slider in javascript.