PHP Class that creates javascriptcode to build a awGrid
Hello Guys,
right now i'am dealing with the grid component of aw to check i can integrate this one into one of my projects. during my work with the evaluation version i wrote a php class that generates the javascriptcode to build those fantastic grids.
well, is anybody interested in this class? if anybody is, i will document that stuff on my website.
here is a litte code thats shows how to build grid with awGrid an my PHP Class
greetings from germany
memory imrpint
right now i'am dealing with the grid component of aw to check i can integrate this one into one of my projects. during my work with the evaluation version i wrote a php class that generates the javascriptcode to build those fantastic grids.
well, is anybody interested in this class? if anybody is, i will document that stuff on my website.
here is a litte code thats shows how to build grid with awGrid an my PHP Class
require_once("php/awGrid.class.php");
$headline = array("Name","Adress","Company","Zipcode");
$grid = new awGrid("MyCells","MyHeaders","grid1");
$grid->addHeaders($headline);
$singlerow = array("Mr. Test","Test Ave. 123","Test Inc.","123456");
$grid->addRow($singlerow);
$grid->setcellcount(4);
echo $grid->awGridCreate();
greetings from germany
memory imrpint
memory_imprint
June 22,