Development

Changeset 10327

You must first sign up to be able to contribute.

Changeset 10327

Show
Ignore:
Timestamp:
07/16/08 21:37:53 (4 months ago)
Author:
KRavEN
Message:

Fixed Ext.ux.Checkbox.js to return true or false instead of 1 and 0
Added override fixes for Gridview and FormLayout?

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/sfExtjsThemePlugin/config/config.php

    r10287 r10327  
    1414  '/sfExtjsThemePlugin/js/Ext.menu.Menu.override.js',         // adds possibility to remove items from menu 
    1515  '/sfExtjsThemePlugin/js/Ext.TabPanel.override.js',          // added functionality to set activeTab to none (item=-1) 
     16  '/sfExtjsThemePlugin/js/Ext.grid.GridView.override.js', 
     17  '/sfExtjsThemePlugin/js/Ext.layout.FormLayout.override.js', 
    1618 
    1719  '/sfExtjsThemePlugin/js/Ext.ux.form.ComboBox.js',           // allows comboboxes to take an array for the store 
  • plugins/sfExtjsThemePlugin/web/Ext.ux.form.Checkbox/Ext.ux.form.Checkbox.js

    r10286 r10327  
    6565  } 
    6666}); 
    67 Ext.reg('ux_checkbox', Ext.ux.form.Checkbox); 
     67Ext.reg('checkbox', Ext.ux.form.Checkbox); 
    6868 
    6969Ext.lib.Ajax.serializeForm = function(F){ 
     
    9494        case"checkbox": 
    9595          if(G.checked){ 
    96             K+=encodeURIComponent(E)+"="+encodeURIComponent('1')+"&" 
     96            K+=encodeURIComponent(E)+"="+encodeURIComponent(true)+"&" 
    9797          } else { 
    98             K+=encodeURIComponent(E)+"="+encodeURIComponent('0')+"&" 
     98            K+=encodeURIComponent(E)+"="+encodeURIComponent(false)+"&" 
    9999          } 
    100100          break;