I have an ultratexteditor as an editorcontrol within a cell in my ultragrid. The ultratexteditor has another grid as its control. I want users to only be able to edit that cell using the editor; however, when I set activation to 'Noedit' or 'ActivateOnly', it disables the whole cell - ie, I cannot then click on my dropdown button in the ultratexteditor. I have also tried using the grid events of beforeenteredit and beforecellactivate to stop allowing editing on cell text - but they also prevent the dropdown button on the ultratexteditor from working. Is there a way to use the ultratexteditor and not allow editing of the text in the cell?
Thanks in advance,
Dusty
Hi Dusty,
I think you need to set the ButtonDisplayStyle on the column to Always.
Thanks, Mike - that did work. I have other columns that use the onmouseenter option for buttondisplaystyle...so would prefer not to have to force the always (just for visuals) - but that does allow button to be clicked as well as not editing text - THANKS!
Take care,