vijai
#1
if i use the groupBy() have to problems.
- In the grid attachHeader column filtering is not working…
- once load the page, paging is wotking, if i click 4th or some page groupBy is working, again click the 1st page groupBy() is not working…
i dont know the reason… plz help me…
my code
[code][/code]
vijai
#3
plz check this… xml file…
<?php
require_once("../config/config.inc");
header("Content-type: text/xml");
echo('<?xml version="1.0" encoding="utf-8"?>');
echo '<rows id="0">';
$data = getTM_Client($search_data,"","");
foreach($data as $key =>$value){
echo ("<row id='".$value['seq']."'>");
print("<cell><![CDATA[".$value[ins_dt]."]]></cell>");
print("<cell><![CDATA[".$value[area_str]."]]></cell>");
print("<cell><![CDATA[".$value[compName]."]]></cell>");
print("<cell><![CDATA[".$value[sitename]."]]></cell>");
print("<cell><![CDATA[".$value[charge1]."]]></cell>");
print("<cell><![CDATA[".$value[tel1]."]]></cell>");
print("<cell><![CDATA[".$value[charge1_mail]."]]></cell>");
print("<cell><![CDATA[".$value[client_PCurl]."]]></cell>");
print("<cell><![CDATA[".$value[client_MBurl]."]]></cell>");
print("<cell><![CDATA[".$value[p_History]."]]></cell>");
print("<cell><![CDATA[".$value[c_History]."]]></cell>");
print("</row>");
}
echo '</rows>';
?>
Olga
#4
Please make sure if dhtmlxgrid_filter.js file is attached to your page
vijai
#5
yes, dhtmlxgrid_filter.js is already included…