getCellEditor

вернет объект редактора, заданного для ячейки

object getCellEditor(number row,number column, [string page] );
rownumberid ряда
columnnumberid колонки
pagestringопциональный, название страницы
objectобъект с типом редактора и его настройками (детали ниже)

Example

// зададим редактор
$$("ss1").setCellEditor(8, 1, {
    editor: "ss_richselect", 
    options: ["One","Two","Three"]
    }, "Sheet1");
 
// вернем редактор
$$("ss1").getCellEditor(8, 1, "Sheet1"); 
// -> { editor:"ss_richselect", options: ["One","Two","Three"] }

Related samples

Details

Метод возвращает объект с двумя свойствами:

  • editor - (string) тип редактора
  • options - (string,array) массив опций для редактора или ссылка на диапазон ячеек
{ editor:"ss_richselect", options:["One","Two","Three"] }
 
// or
{ editor:"ss_richselect", options:"B3:B7" }
See also
Наверх
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.