HomeHelpTrac

Changeset 15778 for trunk/inc


Ignore:
Timestamp:
12/19/11 20:12:16 (5 months ago)
Author:
Alexander Trofimov
Message:

small fixes

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

    • Property svn:ignore set to
      storage
  • trunk/inc/js/classes/BxDolGrid.js

    r15744 r15778  
    6767BxDolGrid.prototype.orderable = function () { 
    6868    var $this = this; 
    69     jQuery('#' + this._sIdTable + ' *[bx_grid_sort_head] .bx-grid-sort-handle').bind('click', function () {         
     69    jQuery('#' + this._sIdTable + ' *[bx_grid_sort_head] .bx-grid-sort-handle').bind('click', function () {                 
    7070        var sField = $(this).parents('*[bx_grid_sort_head]').attr('bx_grid_sort_head'); 
    7171        if (sField) { 
     
    205205        this.loading(false); 
    206206 
    207     if (oData && undefined != oData.grid) { 
     207    if (oData && undefined != oData.grid) {         
    208208        $('#' + this._sIdContainer).html(oData.grid); 
    209209        this._onDataReloaded(true); 
     
    295295        $this.actionWithId (sActionData, sAction, {}, '', false, sActionConfirm); 
    296296    }); 
    297  
     297     
     298    if (jQuery('#' + this._sIdWrapper + ' .bx-switcher-cont input').length)  
     299        jQuery('#' + this._sIdWrapper).addWebForms();  
    298300    jQuery('#' + this._sIdWrapper + ' .bx-switcher-cont input').bind('change', function () { 
    299301        var sAction = $(this).attr('bx_grid_action_single'); 
     
    333335 
    334336    jQuery('#' + this._sIdTable + ' tbody tr:odd').addClass('bx-def-color-bg-hl'); 
    335  
     337     
    336338    if (this._oOptions.sorting) 
    337339        this.orderable(); 
Note: See TracChangeset for help on using the changeset viewer.