Hi,
My issue is when I do paging , I select 2 records from the 1st page and then when i travel to the 2nd page, I lose my selected items on first page.
So, workaround for this: in my Radgrid ItemCommand event.
Why does this event does not get fired when I select/deselect an item in the grid. So, what event of the radgrid shd i use so that when I check the checkbox /uncheck event gets fired.
if(e.commandname == radgrid.Pagecommandname)
{
gridpagerItem obItem = new GridPagerItem();
How can i access the obitem's value
}
If i use griddata item. it gives me an error telling cannot cast from gridpageritem to griddataitem? so , how do i do this
My issue is when I do paging , I select 2 records from the 1st page and then when i travel to the 2nd page, I lose my selected items on first page.
So, workaround for this: in my Radgrid ItemCommand event.
Why does this event does not get fired when I select/deselect an item in the grid. So, what event of the radgrid shd i use so that when I check the checkbox /uncheck event gets fired.
if(e.commandname == radgrid.Pagecommandname)
{
gridpagerItem obItem = new GridPagerItem();
How can i access the obitem's value
}
If i use griddata item. it gives me an error telling cannot cast from gridpageritem to griddataitem? so , how do i do this