I'm trying to edit a WebDataGrid's column with a DropDownProvider. I need to set the provider's editor control data source programmatically with a DataTable, but I can't get it work... any idea? I tried using an external WebDropDown, but I can't bind it to the DropDownProvider.
Thanks in advance!
Hello,
Is it possible an Infragistics Support Person post a link and code showing how this is done? I have been struggling with the same issue and either the suggested links are broken or the answers found do not help. I am using WebDataGrid v12.1.
I can get the correct text to show in the cell but I can not get the drop down list to open, I have another drop down list in the row, a date picker, and it work OK.
Please, please can anyone direct me to the code showing how to setup an Editor Control to the DropDownProvider?
Thank you
This coding not showing any error but iam not able to bind my webdatagrid.I am not able to view the grid while i am binding dynamically the dropdownprovider.
DropDownProvider ddp = (DropDownProvider) yourWebDataGrid.EditorProviders["ddp"];
ddp.EditorControl.DataSource = <your datatable> ddp.EditorControl.TextField = "Desc";
ddp.EditorControl.ValueField = "ID";
ddp.EditorControl.ValueDisplayType = Infragistics.Web.UI.ListControls.DropDownValueDisplayType.Simple;