. , .
DataScroller.
, , , :
№ 1 ( )
PrimeFaces.widget.DataScroller = PrimeFaces.widget.BaseWidget.extend({
init: function(cfg) {
this._super(cfg);
if(cfg.widgetVar === 'yourWidgetVar') {
this.yourCustomMethod();
}
},
yourCustomMethod: function() {
}
});
№ 2 ( )
PF('yourWidgetVar').init = function() {
PrimeFaces.widget.DataScroller.prototype.init.call(this);
};