I am using the WebDialogWindow in my project and for most things it works well, but I have run into a major issue. From my codebehind if I have an UltraWebGrid in the Dialog Window and inside the Grid I have a Column that is a Template Column with a WebComboBox in it, I can not see the combox in my page load or other methods of the code behind.
Why would this be and how do I get access to it??
Hello,
I believe this is the expected behaviour, since the ComboBox is contained inside the Template of UltraWebGrid (another INamingContainer) and logically is not available directly as a reference from Page_Load. I believe what needs to be done is to access the combobox from the InitializeRow event of the grid (since there is one combo for each grid row) using code similar to what is used here (the second post)
http://forums.infragistics.com/forums/p/18700/67946.aspx#67946