w2grid.refreshRow
更新日: 2018-09-06
refreshRow(recid)
1レコードを再読込します。 戻り値はundefined
です。
- recid: string
- レコードの
recid
。
説明
指定したレコードを再読込します。 1レコードだけが変更された場合に 素早く再読込するための方法として用意してあります。w2utils.refresh()
メソッドを使って全てのレコードを再読込するわけではないので、とても速いですが、 再読込するのは指定した1レコードだけです。
グリッドを以下のように定義すると
$('#grid').w2grid({
name: 'grid',
columns: [
{ field: 'recid', caption: 'ID', size: '50px' },
{ field: 'lname', caption: 'Last Name', size: '30%', editable: { type: 'text' } },
{ field: 'fname', caption: 'First Name', size: '30%', editable: { type: 'text' } },
{ field: 'email', caption: 'Email', size: '40%', editable: { type: 'text' } },
{ field: 'sdate', caption: 'Start Date', size: '120px', editable: { type: 'date' } },
{ field: 'edate', caption: 'End Date', size: '120px', editable: { type: 'date' } }
],
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['grid'].get(3).fname = 'other';
w2ui['grid'].refreshRow(3);
デモ
グリッドをクリックすると、3行目の"First Name"を"other"に変更し、 そのレコードだけを再読込します。
JavaScript
$('#grid').w2grid({
name : 'mygrid',
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'].on('click', function(event) {
w2ui['mygrid'].get(3).fname = 'other';
w2ui['mygrid'].refreshRow(3);
});
© 2017. .
Code licensed under theMIT License. Documentation licensed underCC BY 3.0.
このコンテンツはvitmalinaによるw2ui.gridドキュメントを翻訳/改変したものです。