Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
385
DropDownList Problem.
posted

 I have a UserControl that I want to embed in the UltraGrid.  The UserControl contains an UltraComboEditor.  To implement the IProvidesEmbeddedableEditor Interface, I added this:

        #region IProvidesEmbeddableEditor Members

        public EmbeddableEditorBase Editor
        {
            get
            {
                return this.ultraComboEditor.Editor;
            }
        }

        #endregion

However, when I try to drop down the combobox that appears in the UltraGrid, the drop down list appears in the upper left part of the screen instead of under the combobox.  What do I need to do to remedy this? 

Parents Reply Children
No Data