Is there a way to use multiple editor for cell type

Tags: #<Tag:0x00007f8b233a13c0>

I want to display a combination of dropdown and numeric value when I click the cell to edit. I have created a custom data type name customCurrency. It displays values like USD 600, GBP 900 etc. Now I want to make users select from the currency pick-list while editing a value. Like if I click to edit ‘GBP 900’, there should appear a dropdown and numeric value whitin a cell. I have tried creating a custom editor but no luck. Is there any easy workaround for this scenario ?.

Hi Arslan,

Can you share a draft? I can imagine the opening dropdown list of choices but when you want to edit those values? When the list is opened?

I was trying to write CurrencyEditor like this [([Code] https://codeshare.io/alrWNZ). It gives no error but dropdown does not display when I click on the cell, instead only simple distorted input appears.
I want something like following when I click cell

obviously currency list instead of percentage.

It looks like you need to disable the editor to use the dropdown inside the cell https://jsfiddle.net/AMBudnik/ut3wdv0g/

Sorry for my poor communication it isn’t what I wanted, Instead I want a single cell to display both input box and select list when editing it. Normal display is like 42%20PM as given in image, but when I double click the cell containing EUR 25,000 for edit, I should be displayed a select list of currencies[EUR,USD,GBP] as well as an input box for value [any numeric value].

Hm… I do not have any examples that would meet that goal. That is definitely a job for a custom editor.