common.onResize
更新日: 2018-09-07
onResize = function(event)
オブジェクトがリサイズされた時に呼び出されます。
このイベントは全w2uiウィジェット(Layout, Grid, Toolbar, Sidebar, Tabs, Form)で共通に利用可能なイベントです。 オブジェクト作成時にイベントリスナーとして指定します。
$('#layout').w2layout({
name : 'layout',
panels : [
{ type: 'top', size: 40 },
{ type: 'preview', size: 200 }
],
onResize: function(event) {
console.log('object '+ this.name + ' is resized');
}
});
または、オブジェクト生成後に指定します。
w2ui.layout.on('resize', function(event) {
console.log('object '+ this.name + ' is resized');
});
このイベントハンドラはデフォルトのアクションの前に呼び出されます。 デフォルトアクションを取り消すにはevent.preventDefault()
を使います。 このイベントが完全に終わった後にデフォルトアクションを走らせるには、event.onComplete
を使います。 より詳しく知りたい場合はutils:eventsを参照して下さい。
デモ
top
または、preview
パネルをリサイズすると、console.log
が出力されます。
JavaScript
$('#layout').w2layout({
name : 'layout',
panels : [
{ type: 'top', size: 40, resizable: true, content: 'top' },
{ type: 'preview', size: 200, resizable: true, content: 'preview' }
],
onResize: function(event) {
console.log('object '+ this.name + ' is resized');
}
});
© 2017. .
Code licensed under theMIT License. Documentation licensed underCC BY 3.0.
このコンテンツはvitmalinaによるw2ui.utilsドキュメントを翻訳/改変したものです。