- Timestamp:
- 11/28/11 01:06:42 (6 months ago)
- File:
-
- 1 edited
-
trunk/inc/js/classes/BxDolGrid.js (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/inc/js/classes/BxDolGrid.js
r15682 r15704 145 145 }); 146 146 147 if (!sDataAdd.length) 148 return; 149 147 150 if (typeof(sData) == "undefined" || !sData.length) { 148 151 sData = sDataAdd; … … 242 245 243 246 jQuery('#' + this._sIdWrapper + ' *[bx_grid_action_bulk]').bind('click', function () { 247 if ($(this).hasClass('bx-btn-disabled')) 248 return; 244 249 var sAction = $(this).attr('bx_grid_action_bulk'); 245 250 var sActionConfirm = $(this).attr('bx_grid_action_confirm'); … … 249 254 250 255 jQuery('#' + this._sIdWrapper + ' *[bx_grid_action_single]').bind('click', function () { 256 if ($(this).hasClass('bx-btn-disabled')) 257 return; 251 258 var sAction = $(this).attr('bx_grid_action_single'); 252 259 var sActionConfirm = $(this).attr('bx_grid_action_confirm'); … … 256 263 257 264 jQuery('#' + this._sIdWrapper + ' *[bx_grid_action_independent]').bind('click', function () { 265 if ($(this).hasClass('bx-btn-disabled')) 266 return; 258 267 var sAction = $(this).attr('bx_grid_action_independent'); 259 268 var sActionConfirm = $(this).attr('bx_grid_action_confirm');
Note: See TracChangeset
for help on using the changeset viewer.