Changeset 10327
- Timestamp:
- 07/16/08 21:37:53 (4 months ago)
- Files:
-
- plugins/sfExtjsThemePlugin/config/config.php (modified) (1 diff)
- plugins/sfExtjsThemePlugin/web/Ext.ux.form.Checkbox/Ext.ux.form.Checkbox.js (modified) (2 diffs)
- plugins/sfExtjsThemePlugin/web/js/Ext.grid.GridView.override.js (added)
- plugins/sfExtjsThemePlugin/web/js/Ext.layout.FormLayout.override.js (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/sfExtjsThemePlugin/config/config.php
r10287 r10327 14 14 '/sfExtjsThemePlugin/js/Ext.menu.Menu.override.js', // adds possibility to remove items from menu 15 15 '/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', 16 18 17 19 '/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 65 65 } 66 66 }); 67 Ext.reg(' ux_checkbox', Ext.ux.form.Checkbox);67 Ext.reg('checkbox', Ext.ux.form.Checkbox); 68 68 69 69 Ext.lib.Ajax.serializeForm = function(F){ … … 94 94 case"checkbox": 95 95 if(G.checked){ 96 K+=encodeURIComponent(E)+"="+encodeURIComponent( '1')+"&"96 K+=encodeURIComponent(E)+"="+encodeURIComponent(true)+"&" 97 97 } else { 98 K+=encodeURIComponent(E)+"="+encodeURIComponent( '0')+"&"98 K+=encodeURIComponent(E)+"="+encodeURIComponent(false)+"&" 99 99 } 100 100 break;