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
1255
How to select dropdown list but disable editing
posted

Hi,  We have a UltraGridColumn which is a dropdownlist.  We want to select one of the values from it and copy to somewhere else, but disable editing.  How to do that ?  Here is our setting:

 

UltraGridColumn    MyColumn;

MyColumn.style   =  ColumnStyle.DropDown;

MyColumn.CellActivation  =  Activation.NoEdit;

Note that even if we set CellActivation to NoEdit,   it's still editable.   And we tried  changing the Style to  DropDownList,   then  it's not editable, but  then  the user cannot select  the cell and copy the value.   Can anyone help  ?