Row id 0 always on top...

Hi,

    when i filtering the grid, if row id 0, it will display always on top. how to make it? plz help me. Im in under pressure.

thank u,

Hi all,

  1. pic1: displaying initial values.

  2. pic2: after filtering the grid displaying like this now.

  3. pic3: I want to display like this, ROW ID 0 always on first row.

my get.php file

<?php
header("Content-type: text/xml");
echo('<?xml version="1.0" encoding="utf-8"?>'); 
echo '<rows id="0">';

$data = getTM_Intmemo($search_data,"","");

echo ("<row id='0'>");
print("<cell>新規登録<![CDATA[".$row['name']."]]></cell>");
print("</row>");
foreach($data as $key =>$value){

	echo ("<row id='".$value[seq]."'>");
	print("<cell><![CDATA[".$value[seq]."]]></cell>");
	print("<cell><![CDATA[".$value[ins_dt."]]></cell>");
	print("<cell><![CDATA[".$value[staff."]]></cell>");
	print("<cell><![CDATA[".$value[contents]."]]></cell>");
	print("<cell><![CDATA[".$value[plan_dt]."]]></cell>");
	print("</row>");
	
}
echo '</rows>';
?>

echo (“”);
print(“新規登録”);
print(“”);

the above 3 lines in get.php adds ROW ID 0 in the initial grid.

i want to display like this, ROW ID 0 always on first row. like 3rd pic.

thank you,