Thanks, so instead of putting something like below in the editor of each column,is there a better way to get "hold of" a particular cell within a treelist widget? i.e. what if I want to control a particular cell for formatting, erase borders, merge cells etc?
function numericEditor(container, options) {
//console.log(options);
if ((options.field === "<<
some
field>>") && (options.model.strategyDisplayName ==="<<
some
other field>>")) {
$('<
label
></
label
>')
.appendTo(container);
}
else {
$('<
input
data-bind
=
"value:' + options.field + '"
/>')
.appendTo(container)
.kendoNumericTextBox({
format: "n4",
decimals: 4
});
}
}//end of numeric editor