hi
i am using devexpress for my projects.its working fine in my project.
i got one problem while using footer template,
i have one footer template in the DataGrid , its containing a AspxCombo Box . here i need to one dataset in the DataGrid and combox also should be different data.i done it code,but dataGrid is working fine but ComboBox should not displaying any values.
my code is for dataGrid
if(!postback)
{
bindDataGrid()
PopulateDropDown()
}
private void bindDataGrid()
{
dataGrid1.dataSource = ds;
dataGrid1.dataBind();
}
private void PopulateDropDown()
{
ArrayList arList = new ArrayList();
DevExpress.Web.ASPxEditors. ASPxComboBox ddl = ((DevExpress.Web.ASPxEditors.ASPxComboBox)UserGrid.FindFooterCellTemplateControl(UserGrid.Columns[1], "ddlUsers"));
for (int i = 0; i <= arList.Count - 1; i++)
{
ListEditItem li = new ListEditItem("vijayr",raghavendran")
ddl.Items.add(li);
}
after page load its not displaying in the my dropdown. how can i make it display in the footer Template.
Regards
Vijay r