How can i fill the grid with php with a mysql-query? and how can i link cell to a website?
thanks and sorry for my bad english
stefan from germany
The component is fully client side and can’t connect directly to XML, but it can load data from any kind of server side script, which can be connected to DB
On client side
grid.loadXML(“some.php”);
on server side
<?php
header("Content-type:text/xml");
//connect to DB
...
//fetch necesary data from DB
...
//output data as XML
...
?>