by using this link
Is there any sample or article e.t.c
to help me
1) use itemcommand of "UltraWebGrid "
2) place datakey name in Properties ( F4 short key)
3)place key name in colum of Editbutton (<igtbl:TemplatedColumn Key="Edit"> )
4)3)place key name in colum of DeleteButton(<igtbl:TemplatedColumn Key="Delete"> )
thats it
on gvInfra_ItemCommand
{
CellItem del = (CellItem)e.ParentControl;
int customreId = Convert.ToInt32(del.Cell.Row.DataKey);
if (del.Cell.Key == "delete")
}
else {
happy programming