I'm trying to add a drop down list to a gridview header. The number of columns can change so it has to be done in the code behind (the .cs file). Please help me with this.
Do it in either RowCreated or RowDataBound event. Both fire for every grid row, including the header. You can tell the header by looking in the RowType property. -- Eliyahu Goldin, Software Developer & Consultant Microsoft MVP [ASP.NET] http://msmvps.com/blogs/egoldin "CDonlan" wrote in message news:1186078946.620672.118130@z24g2000prh.googlegroups.com... > I'm trying to add a drop down list to a gridview header. The number of > columns can change so it has to be done in the code behind (the .cs > file). Please help me with this. >
Thanks a lot. I ended up adding it on the row data bound. Can you help me out with even handling? Im doing ddl.SelectedIndexChanged += new EventHandler(HandelDropDownList); but its throwing an error. Thanks. On Aug 3, 3:28 am, "Eliyahu Goldin" wrote: > Do it in either RowCreated or RowDataBound event. Both fire for every grid > row, including the header. You can tell the header by looking in the RowType > property. > > -- > Eliyahu Goldin, > Software Developer & Consultant > Microsoft MVP [ASP.NET]http://msmvps.com/blogs/egoldin > > "CDonlan" wrote in message > > news:1186078946.620672.118130@z24g2000prh.googlegroups.com... > > > I'm trying to add a drop down list to a gridview header. The number of > > columns can change so it has to be done in the code behind (the .cs > > file). Please help me with this.