I am having a webdatagrid with two drop downs and row adding is enabled in behavior
when i click in the cells the drop down to the corresponding column doesnt show up . is there any setting for this ?
Hello Grasshoper ,
I'm just following up to see if you've managed to resolve your issue.If you have any questions I'd be glad to answer them.
Best Regards,
Maya Kirova
Developer Support Engineer
Infragistics, Inc.
http://es.infragistics.com/support
Identically to the way you set the WebDropDown editor provider for the editing of cells by setting the following properties for the EditingColumnSetting :
<ig:CellEditing>
<ColumnSettings>
<ig:EditingColumnSetting ColumnKey="Item" EditorID="dd1" />
<ig:EditingColumnSetting ColumnKey="Data" EditorID="dd2" />
</ColumnSettings>
</ig:CellEditing>
You need to set in the RowAdding:
<ig:RowAdding>
<ig:RowAddingColumnSetting ColumnKey="Item" EditorID="dd1" />
<ig:RowAddingColumnSetting ColumnKey="Data" EditorID="dd2" />
</ig:RowAdding>
I’m attaching a sample for your reference. Feel free to modify it and don’t hesitate to ask if you have further questions.