Advertisement
Guest User

Untitled

a guest
Jan 30th, 2013
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. qx.Class.define('qx.ui.mobile.list.CheckBoxList', {
  2.   extend : qx.ui.mobile.list.List,
  3.  
  4.   // overridden
  5.   construct : function (delegate) {
  6.     this.base( arguments );
  7.  
  8.     this.__provider = new qx.ui.mobile.list.provider.CheckBoxListItemProvider( this );
  9.     if ( delegate ) {
  10.       this.setDelegate( delegate );
  11.     }
  12.   }
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement