Hi we have a cell in a ultrawingrid that has a valuelist thus making it a dropdown....
On click of that cell the rowedittemplate is shown. How can i get the contents of what is in my value list of that particular cell to display in the rowedittemplate without clicking on the dropdown button??
Hello Burmo,
This might be happening because the 'UltraGridRowEditTemplate' control instance pops up as a modal dialog. I used the following settings in order to achieve the desired functionality in my sample:
ultraGridRowEditTemplate1.DisplayMode = Infragistics.Win.UltraWinGrid.RowEditTemplateDisplayMode.Modeless;
Please try it and let me know if it works for you.
Hi Boris
The cell is in editmode... Is there no way to do this on show of the rowedittemplate using the field on the rowedit template?
Did you try the code in the cell click event? If so, I guess that your cell is not editable. If this is the case then you should use this code only when the cell is in editmode. If the cell is not in editmode then there is no editor component assigned to the cell object. If you are not able to run this code in the way you want please send me your code or a small sample project with your scenario.
Hi
This code seems to fire the event but im getting a error relating to the control not been in edit mode??
If I got you right this time, I think that you could use the following line in the 'CellClick' event:
e.Cell.EditorResolved.DropDown();
Please feel free to let me know if I misunderstood you or if you have any other questions.