Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted on Mar 05, 2007 09:54
open dhtmlx forum
I have a multiselct grid. But I can't figure out how I can post the rows ID' back in a post by using g...

I have a multiselct grid. But I can't figure out how I can post the rows ID' back in a post by using grid AJAX engine.

Answer posted on Mar 05, 2007 09:55

Basically you need to do next:

a) define callback function

            function my_callback(){

             }

b)  create ajax object

            var ajax=new dtmlXMLLoaderObject(my_callback);

c)  send request

            for get

                        ajax.loadXML("my_xml.php?a=1&b=2");

                                   //  $_GET["a"] $_GET["b"]

 

            for post

                        ajax.loadXML("my_xml.php?a=1&b=2",true,"c=3&d=4");

                                   //  $_GET["a"] $_GET["b"]

                                   //  $_POST["c"] $_POST["d"]
Answer posted by sematik (Support) on Nov 29, 2014 11:15

I hope this information will be enough for you. But you also can have a look at web ui toolkit and free javascript calendar download.