I need to create a CellEditor class with a textbox and dropdown menu in YUI DataTable.
The data for the cell editor will be in the following format :
var obj={text:<string>, label:<string>, value:<string or number>};
The text property will be the value for the textbox, the label property will be the text for the option in the dropdown, and the value property will be the value for the selected option in the dropdown as follows :
<input type="text" value=obj.text/> <select><option value=obj.value>obj.label</option></select>
I will pass in the set of dropdown options as a configuration variable, exactly as described for YAHOO.widget.DropdownCellEditor. So, what is the best and easiest way to do this?
I think, I need to use YAHOO.lang.extend to extend class, but which class ? (DropdownCellEditor class, TextboxCellEditor class, or create a new class than extend YAHOO.widget.BaseCellEditor and reuse DropDown+Textbox).
