コントロールを表示するためにノックアウト JS テンプレートを使用しています。ただし、チェックボックスは常にチェック済みとして表示されます。以下では、文字列プロパティであるチェックボックスに ActualValue プロパティをバインドしています。
jQuery テンプレート
<script type="text/x-jquery-tmpl" id="membershipMetaDataTemplate">
<tr>
<td><span data-bind="text: DisplayName" ></span></td>
{{if ObjectType() == 'string'}}
<td><input type="text" data-bind="value: ActualValue, disable: ReadOnly" />
{{/if}}
{{if ObjectType() == 'boolean'}}
<td><input type="checkbox" data-bind="checked: ActualValue, disable: ReadOnly" /></td>
{{/if}}
{{if ObjectType() == 'dropdown'}}
<td><select data-bind="options: PermittedValues, value: ActualValue, disable: ReadOnly, optionsCaption: 'Choose...'"/></td>
{{/if}}
</tr>
ありがとう