Hi,
In my ASPxGridView on row command event i am capturing id of row clicked and than reading row values its working fine.
But when i filter the records and click on the link button i am not getting the correct id …by default id is coming as 1
my code:
object id = e.CommandArgs.CommandArgument;
string filename = Convert.ToString(grdhdm.GetRowValuesByKeyValue(id, "filename"));
After filtering the records object is coming as 1 and not the correct one and sometimes it returns null and when second time you click the same link it will return the correct value but after filtering on first attempt it does not give correct id
Also pls let me know how i can make the filtering criteria as 'Contains' by default
Regards,
Neeraj