w2grid.refreshRanges
更新日: 2018-09-06
refreshRanges()
指定範囲を再読みします。 戻り値は再読込に掛かった時間(ms)です。
説明
この関数は.selectType
プロパティにcell
を指定して、Excelのようなグリッドの場合のみ使うことができます。 また、.addRange()
メソッドで追加したり、.removeRange()
メソッドで削除される.ranges
プロパティが用意されている必要があります。 この関数は内部的に使用され、必要に応じて自動的に呼び出されます。
グリッドを以下のように定義すると
$('#grid').w2grid({
name : 'grid',
selectionType : 'cell',
columns: [
{ field: 'recid', caption: 'ID', size: '50px' },
{ field: 'lname', caption: 'Last Name', size: '30%', searchable: true },
{ field: 'fname', caption: 'First Name', size: '30%', searchable: true },
{ field: 'email', caption: 'Email', size: '40%', searchable: true },
{ field: 'sdate', caption: 'End Date', size: '120px' }
],
records: [
{ recid: 1, fname: 'John', lname: 'doe', email: 'vitali@gmail.com', sdate: '1/3/2012' },
{ recid: 2, fname: 'Stuart', lname: 'Motzart', email: 'jdoe@gmail.com', sdate: '2/4/2012' }
]
});
範囲を以下のように指定します。
w2ui['grid'].addRange({
name : 'range',
range : [{ recid: 1, column: 3 }, { recid: 5, column: 5 }],
style : 'background-color: rgba(0, 140, 0, 0.1); border: 2px solid green'
});
そして指定範囲を更新します。
w2ui['grid'].refreshRanges();
デモ
グリッドをクリックすると、ID:1~5、"Email"~"End Date"の範囲にボーダーと色が付きます。
JavaScript
$('#grid').w2grid({
name : 'mygrid',
selectType : 'cell',
columns : [
{ field: 'recid', caption: 'ID', size: '50px' },
{ field: 'lname', caption: 'Last Name', size: '30%' },
{ field: 'fname', caption: 'First Name', size: '30%' },
{ field: 'email', caption: 'Email', size: '40%' },
{ field: 'sdate', caption: 'Start Date', size: '120px' },
{ field: 'sdate', caption: 'End Date', size: '120px' }
],
records: [
{ recid: 1, fname: 'John', lname: 'doe', email: 'vitali@gmail.com', sdate: '1/3/2012' },
{ recid: 2, fname: 'Stuart', lname: 'Motzart', email: 'jdoe@gmail.com', sdate: '2/4/2012' },
{ recid: 3, fname: 'Jin', lname: 'Franson', email: '--', sdate: '4/23/2012' },
{ recid: 4, fname: 'Susan', lname: 'Ottie', email: 'jdoe@gmail.com', sdate: '5/3/2012' },
{ recid: 5, fname: 'Kelly', lname: 'Silver', email: 'jdoe@gmail.com', sdate: '4/3/2012' },
{ recid: 6, fname: 'Francis', lname: 'Gatos', email: 'vitali@gmail.com', sdate: '2/5/2012' }
],
});
w2ui['mygrid'].addRange({
name : 'range',
range : [{ recid: 1, column: 3 }, { recid: 5, column: 5 }],
style : 'background-color: rgba(0, 140, 0, 0.1); border: 2px solid green'
});
w2ui['mygrid'].on('click', function(event) {
w2ui['mygrid'].refreshRanges();
});
© 2017. .
Code licensed under theMIT License. Documentation licensed underCC BY 3.0.
このコンテンツはvitmalinaによるw2ui.gridドキュメントを翻訳/改変したものです。