I have added a column in ultrawingrid and set the style to ColumnStyle.EditButton.In the cell am displaying data from the database.as the data is too long to display in the cell, when the user clicks on the edit button of the cell,i need to display in a popup kind of control(may be multi line textbox).
Please suggest me how can i implement this functionality.
Hi,
It might be possible to do this with an EditButton, but it would be much easier with an EditorButton. The distinction is pretty subtle, but they are two totally different things.
Here's what you do:
That's it. Instant dropdown textbox in a grid cell.
You will probably want to handle the AfterEditorButtonDropDown event of the UltraTextEditor and use the e.Context to determine which grid cell is dropping down and then populate the dropdown control accordingly.
Hi Mike,
In ultraTextEditor's ButtonsRight collection, i can see only EditorButton, not DropDownEditorButton. pls help.
I applied your code and it work fine but I need to block user from editing the text in cell itself , mean I don't want to allow user to edit the text in cell it self. Do you know , how I can achieve it.
Please excuse me if it is a silly question as I am using infragistic component for only 2 weeks. Posting on the forum are helping me a lot and bringing me upto the speed. Heads off to every one.
Regards
Hi all, I know this is an old question I know, but is it at all possible to make the editor textbox (the one that's being dropped down), resizeable? I think I'm either missing something obvious or it's not easily possible.
Thanks, Tom
Thnx Mike ,it helped me solving my problem like in 2 mins.Thnq once again.