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
910
UltraDropDown: Show Dropdown button always
posted

Hi,

which layoput property do I have to set if I want do have the drop down button of an UltraDropDown always be visible? ...not only on focus/hover.

Thanks,

Michael

Parents
No Data
Reply
  • 6120
    Offline posted

    Hello Michael,

    I assume you are using UltraDropDown inside a Grid column. In that case, you can set the containing columns ButtonDisplayStyle to Always in order to make the UltraGrid always display the dropdown arrow button. For example, you can do something like this:
    UltraGridColumn column = this.ultraGrid1.DisplayLayout.Bands[1].Columns["Column1"];
    column.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;

    Please let me know if I may be of further assistance.

    Sincerely,
    Sahaja Kokkalagadda
    Associate Software Developer

Children
No Data