getCellEditor

returns the editor set in a cell

object getCellEditor(number row,number column, [string page] );
row
numberthe row id column
numberthe column id page
stringoptional, the name of the sheet
objectan object with editor type and a set of options (see the details)

Example

// setting a cell editor
$$("ss1").setCellEditor(8, 1, {
    editor: "ss_richselect", 
    options: ["One","Two","Three"]
    }, "Sheet1");
 
// getting the cell editor
$$("ss1").getCellEditor(8, 1, "Sheet1"); 
// -> { editor:"ss_richselect", options: ["One","Two","Three"] }

Related samples

Details

The returned object contains two properties:

{ editor:"ss_richselect", options:["One","Two","Three"] }
 
// or
{ editor:"ss_richselect", options:"B3:B7" }
See also
  • API
  • Articles
  • Back to top
    Join Our Forum
    We've retired comments here. Visit our forum for faster technical support, connect with other developers, and share your feedback there.
    If you have not checked yet, be sure to visit site of our main product Webix ui component library and page of javascript spreadshee product.