onResize
Description
Fires when the List is resized.
Discussion
The onResize event is triggered when the List is resized. For example, if the List is inside a Panel Card and the List is set to fill the container, when the Panel Card is resized, the List's onResize event will fire.
The example below shows how to get List's new width:
var ele = $(this.contId); var w = ele.offsetWidth;
See Also