ノックアウトjsで次のテンプレートを使用しています
<tbody data-bind="foreach: List">
<tr>
<td><input type="button" data-bind="if: ($parent.IsFVL || $parent.AllowChat || $root.Me().AllowChatMonitoring), value: ID, click: SelectVisit" /><span data-bind="ifnot: ($parent.IsFVL || $parent.AllowChat || $root.Me().AllowChatMonitoring), text: ID"></span></td>...
そして、このようにテンプレートを呼び出し/開始します
<div data-bind="template: { name: 'tplVisitsGrid', data: { Title: 'My Visits', 'List': MVL, 'AllowChat': true, 'AllowPing': false, 'IsFVL': false } }"></div>
また、「$root.Me().AllowChatMonitoring」の値が true であることを再確認しましたが、input[type=button] とスパンの両方がレンダリングされています。何が欠けている可能性がありますか?