I am stuck at one place now, I have data in my grid View along with edit and delete button associated with each row.(Though, they ain’t displaying in a same column.. Need Solution?) So my scenario is whenever my edit button is clicked a popup opens which calls my server side method to display the view However, the method needs the row id as a parameter For example I have a grid with three columns shown below
CategoryId CategoryName Actions
100364 Desktop Edit | Delete
So, when my edit button is clicked, I need to pass my categoryId i.e “100364” as rowid to the method instead of rowindex. Moreover, I am not interested in showing categoryId column on user interface.
How can i achieve this scenario ?