We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
####If you have your own custom templates, please add to this!####
###Basic Editable Cell Template###
<input type="text" data-bind="value: $parent.entity[$data.field]" style="width: 80px"/>
###Editable Only When Selected Template###
<input type="text" data-bind="attr:{ readonly : $parent.selected },value: $parent.entity[$data.field]"/>
###Change cell color based on other property###
<div type="text" data-bind="style:{ 'background-color' : $parent.entity['hasError'] ? 'red' : 'green' }, text: getProperty($parent)"></div>