Click here to Skip to main content
15,891,905 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
hi I am creating a gridview dynamically and assigning the selectedindexchanging event dynamically because i want click event for every row but it is unable to fire when I click on the griview row.Please suggest me how would I do.

C#
gridAns.SelectedIndexChanging += new GridViewSelectEventHandler(gridAns_SelectedIndexChanging);
            gridAns.SelectedIndexChanged += new EventHandler(gridAns_SelectedIndexChanged);
            gridAns.RowDataBound += new GridViewRowEventHandler(gridAns_RowDataBound);
Posted
Comments
Chinmaya C 18-Mar-13 6:37am    
Hi Prafulla,

Just a quick question. Do you have any "Select" button in the grid?

Thanks,
Chinmaya
Prafulla Sahu 18-Mar-13 7:33am    
Thanks chinmaya for your reply

No I am not using any select button inside my dynamic gridview. I am using onclick event inside every row in rowdatabound event.
Chinmaya C 19-Mar-13 1:12am    
Hi Prafulla,

Could you please provide the code for onClick event, so it will be easier to understand to cause.

and while replying please reply to the comment, so that we will get notification. :)

Have you enabled page index property of dynamic grid? or you paste your complete code here
 
Share this answer
 
Comments
Prafulla Sahu 18-Mar-13 7:39am    
Thanks Khalid for your reply

PageIndex is not a boolean property so we can't enable that, we can set or get the value into/from PageIndex in gridview.
Sorry i mean have you set property AllowPaging=true;
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900