作成日: 2020/12/03 最終更新日: 2020/12/03
文書種別
使用方法
詳細
セル単位で編集の可否を設定するための機能は用意されておりません。
OnClientBeginningEditプロパティを使用してイベントを設定し、特定のセルの場合に編集をキャンセルしてください。
◎サンプルコード(View)
OnClientBeginningEditプロパティを使用してイベントを設定し、特定のセルの場合に編集をキャンセルしてください。
◎サンプルコード(View)
<script type="text/javascript">
function BeginEdit(s, e) {
//行・列インデックスによる制御
if (e.row == 1 && e.col == 1) {
e.cancel = true;
}
//値による制御
var val = s.getCellData(e.row, e.col);
if (val != "") {
e.cancel = true;
}
}
</script>
@(Html.C1().FlexGrid()
・・・
.OnClientBeginningEdit("BeginEdit")
)
function BeginEdit(s, e) {
//行・列インデックスによる制御
if (e.row == 1 && e.col == 1) {
e.cancel = true;
}
//値による制御
var val = s.getCellData(e.row, e.col);
if (val != "") {
e.cancel = true;
}
}
</script>
@(Html.C1().FlexGrid()
・・・
.OnClientBeginningEdit("BeginEdit")
)
旧文書番号
86231