How to extend a jquery ui widget ? (1.7)

前端 未结 6 1376
终归单人心
终归单人心 2020-12-08 00:40

I would like to create a custom version of the sortable widget. I have been searching for documentation, but could not find something really accurate. The best information I

6条回答
  •  一生所求
    2020-12-08 01:30

    I used this one time:

    $.ui.buttonset.prototype.value = function() {
         return this.element.find('#' + this.element.find('label[aria-pressed="true"]').attr('for')).val();
    } 
    

提交回复
热议问题