Hi,
When using a WebDropDown as an EditorPriovider, I'd like to show the drop down indicator always. The user's knowledge is pretty basic and he wants to see the drop down indicator, without having to click or double click first.
How can I achieve this functionality?
Thanks in advance,
SabbeRubbish
Hi David,
Thanks for your reply. I think I'm already doing the first option, whenever the user clicks the cell, the data is fetched from the server (depending on a value in another column on the same row). However, by default I want to see an image next to the data in the cell.
Is your solution still viable then?
Thanks.
Hi SabbeRubbish,
I can think of two options. The first is to have a templated column where the template is a WebDropDown. In this case, the column is no longer bound to data in the data source. So you'll have to manually update your source or have a hidden column that is bound to the data that you call set_value on at the client.
The option I can think of is a tad more hacky. You'd actually modify the inner html of the cells to display the drop down image after the text. But after editing, you'd probably have to put it back.
I would suggest the first option I gave you. Let us know if you need more help.
regards,
David Young