Thursday 26 April 2012

Monday 23 April 2012

grid-filter-local

http://dev.sencha.com/deploy/ext-4.0.0/examples/grid-filtering/grid-filter-local.html

Saturday 7 April 2012

Paging Sql Query


select a.srno,a.packet_no from
(
select stock.*,row_number() over (order by srno) as rownumber from stock
) a

where rownumber between ((6 - 1) * 10) + 1 and 6 * 10