Hi,
I have a RadGrid which displays all records in 'InPlace' edit mode. One of the columns in the grid is a GridDropDown column. Since I cannot add a FooterTemplate to this column directly, I do the following in the ItemDataBound event:
This allows me to display the combo box in the footer. However, I am not able to access this control on the serverside during a postback (caused by a button in the footer of some other column). I am able to access other controls in the footer that were added during design time using the footertemplate.
Thanks in advance for you help
TJ
I have a RadGrid which displays all records in 'InPlace' edit mode. One of the columns in the grid is a GridDropDown column. Since I cannot add a FooterTemplate to this column directly, I do the following in the ItemDataBound event:
if (e.Item is GridFooterItem)
{
GridFooterItem footer = (GridFooterItem)e.Item;
RadComboBox radComboStatus = new RadComboBox();
radComboStatus.ID = comboId;
.
.
footer["DisplayStatus"].Controls.Add(radComboStatus);
}
This allows me to display the combo box in the footer. However, I am not able to access this control on the serverside during a postback (caused by a button in the footer of some other column). I am able to access other controls in the footer that were added during design time using the footertemplate.
Thanks in advance for you help
TJ