forked from Knockout-Contrib/KoGrid
-
Notifications
You must be signed in to change notification settings - Fork 18
Cell Template Library
danroot edited this page Aug 23, 2012
·
7 revisions
####If you have your own custom templates, please add to this!####
###Basic Editable Cell Template###
<script type="text/html" id="editCellTmpl">
<div data-bind="kgCell: $cell" >
<input type="text" data-bind="value: $cellValue" style="width: 80px"/>
</div>
</script>
Author: Eric M Barnard
###Editable Only When Selected Template###
<script type="text/html" id="editableCellTemplate">
<div data-bind="if: selected, kgCell: $cell" class="$cellClass">
<input type="text" data-bind="value: $cellValue"/>
</div>
<div data-bind="ifnot: selected, kgCell: $cell" class="$cellClass">
<span data-bind="text: $cellValue"></span>
</div>
</script>
Author: Daniel Root