if use groupBY(), column filtering is not working...

if i use the groupBy() have to problems.

  1. In the grid attachHeader column filtering is not working…
  2. 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]

  1. Can you please provide example of xml which you are using to load Grid?
  2. groupBy() method is incompatible with enablePaging() method

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>';
?>

Please make sure if dhtmlxgrid_filter.js file is attached to your page

yes, dhtmlxgrid_filter.js is already included…