Changeset 7082
- Timestamp:
- 01/17/08 19:12:27 (10 months ago)
- Files:
-
- plugins/sfExtjsThemePlugin/config/config.php (modified) (1 diff)
- plugins/sfExtjsThemePlugin/data/generator/sfPropelAdmin/extjs/template/templates/_json_list_td.php (modified) (1 diff)
- plugins/sfExtjsThemePlugin/data/generator/sfPropelAdmin/extjs/template/templates/listSuccess.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/sfExtjsThemePlugin/config/config.php
r6717 r7082 5 5 6 6 sfConfig::set('extjs_quote_except', $quoteExcept); 7 8 sfConfig::set('app_sf_extjs_theme_plugin_border_panel', true); plugins/sfExtjsThemePlugin/data/generator/sfPropelAdmin/extjs/template/templates/_json_list_td.php
r6885 r7082 9 9 $tableDelimiter = sfConfig::get('app_sf_extjs_theme_plugin_table_delimiter', '-'); 10 10 11 //TODO merge with edit.hide, or make different json page for edit, which reduces data overhead (you only send the columns for that view, since datastores are different anyway) 11 //TODO: seperate json-data in list and edit-page, maybe even per tab-page 12 //TODO merge with edit.hide, OR!!! make different json page for edit, which reduces data overhead (you only send the columns for that view, since datastores are different anyway) 12 13 $hs = $this->getParameterValue('list.hide', array()); 13 14 plugins/sfExtjsThemePlugin/data/generator/sfPropelAdmin/extjs/template/templates/listSuccess.php
r7032 r7082 57 57 [?php // Extjs GRID ?] 58 58 <?php else: ?> 59 59 60 <div id="htmlMessageBox"></div> 61 <?php if ($this->getParameterValue('border_panel', sfConfig::get('app_sf_extjs_theme_plugin_border_panel', true))): ?> 60 62 <div style="width:100%;" class="x-gray"> 61 63 <div class="x-box-tl"><div class="x-box-tr"><div class="x-box-tc"></div></div></div> … … 63 65 <h3 style="margin-bottom:5px;"><?php echo $this->getI18NString('list.title', $this->getModuleName().' list') ?></h3> 64 66 <div id="ajax-border" style="border:1px solid transparent;"> 67 <?php endif; ?> 68 65 69 <div id="tabs"></div> 66 70 <div id="tabContent"> … … 68 72 <div id="htmlPanelGrid"></div> 69 73 </div> 74 75 <?php if ($this->getParameterValue('border_panel', sfConfig::get('app_sf_extjs_theme_plugin_border_panel', true))): ?> 70 76 </div> 71 77 </div></div></div> 72 78 <div class="x-box-bl"><div class="x-box-br"><div class="x-box-bc"></div></div></div> 73 79 </div> 80 <?php endif; ?> 74 81 75 82 <?php endif; ?>