forked from Knockout-Contrib/KoGrid
-
Notifications
You must be signed in to change notification settings - Fork 18
Cell Template Library
alex-okrushko edited this page Dec 8, 2012
·
7 revisions
####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>