getCellEditor

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

object getCellEditor(number row,number column);
rownumberid ряда
columnnumberid колонки
objectобъект с типом редактора и его настройками (детали ниже)

Example

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