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
1445
Can I make UltraComboEditor as True Drop Down List?
posted

I am using a ComboEditor as a drop down in a cell. I have used this control before. I do not what the user to be able to type anything in the textbox part of the drop down. When its not in a grid I can mark the drop down style to DropDownList. When I tried it on the grid, it does not work.

 

Any thoughts?

Parents
  • 20872
    Verified Answer
    Offline posted

    Hello,

    In order to simulate the same behavior in the UltraGrid you should set the style of the desired column (the one that you are assinging the UltraComboEditor to) like:

      e.Layout.Bands[0].Columns["Desired One"].Style = Infragistics.Win.UltraWinGrid.ColumnStyle.DropDownList;

    Please let me know if you have any other questions with this matter.

Reply Children