Author: Leon.van.der.Ree
Date: 2010-05-14 14:15:49 +0200 (Fri, 14 May 2010)
New Revision: 29463
Modified:
plugins/ExtjsGeneratorPlugin/trunk/TODO.txt
plugins/ExtjsGeneratorPlugin/trunk/config/app.yml
plugins/ExtjsGeneratorPlugin/trunk/data/generator/ExtjsModule/admin/template/templates/_layout.js.php
Log:
fixed doc, updated todo
Modified: plugins/ExtjsGeneratorPlugin/trunk/TODO.txt
===================================================================
--- plugins/ExtjsGeneratorPlugin/trunk/TODO.txt 2010-05-14 10:17:49 UTC (rev
29462)
+++ plugins/ExtjsGeneratorPlugin/trunk/TODO.txt 2010-05-14 12:15:49 UTC (rev
29463)
@@ -1,22 +1,41 @@
+### forms
add a numberfield widget
add a hiddenfield widget
-heredoc in generator for generated partials
-expand generated partials with examples
+
+show combobox for related fields (field is not always added)
+
+formpanel updatebuttonvisibility needs to be looked at
+- don' t show delete buttons when object is not created yet in edit-form
+- save and new does not work
+
+### grid
+foreign columns should show __toString() output in list
+foreign columns should be clickable to open an adminstration for that foreign
table if one exists
auto add ^object_actions as last column if object_actions are enabled
+
+### filter
move is_empty checkbox for filter to an extension
is_empty doesn't reset when value is set from the session
is_empty should clear associated fields when set
is_empty oncheck listener to submit the filter
-formpanel updatebuttonvisibility needs to be looked at
+
+
+### generic
add time display for datetime fields to list, filter, and edit
-foreign columns should show __toString() output in list
-foreign columns should be clickable to open an adminstration for that foreign
table if one exists
refactor evals in generator partials
clean up app.yml
add default fieldset styles
fix widgetOptions for the itemselector for many to many in formpanels
+add support for objects with multiple fields as primary key
+
+error handling
+
+?????
+heredoc in generator for generated partials
+
+
### defered
add ext components not lazy loaded list to app.yml
add a way to disable bottombar
@@ -26,9 +45,7 @@
remote json combos
remote json itemselector
+expand generated partials with examples
use sfGrid (once it is ready)
-
-### usability
-don' t show delete buttons when object is not created yet in edit-form
\ No newline at end of file
Modified: plugins/ExtjsGeneratorPlugin/trunk/config/app.yml
===================================================================
--- plugins/ExtjsGeneratorPlugin/trunk/config/app.yml 2010-05-14 10:17:49 UTC
(rev 29462)
+++ plugins/ExtjsGeneratorPlugin/trunk/config/app.yml 2010-05-14 12:15:49 UTC
(rev 29463)
@@ -17,8 +17,8 @@
module_returns_layout: true # true uses the build
in viewport, set to false if you want to use your own layout
module_grid_panel_name: Ext.app.sf.GridPanel # the global var name
for the list grid panel
module_tab_panel_name: Ext.app.sf.TabPanel # the global var name
for the list tab panel, gridpanel is automatically an item of the tabpanel
- module_filter_panel_name: Ext.app.sf.FilterPanel # the global var name
doe the list filter panel, filterpanel is not an item of the tabpanel
- module_view_port_name: Ext.app.sf.ViewPort # the global var name
doe the list filter panel, filterpanel is not an item of the viewport
+ module_filter_panel_name: Ext.app.sf.FilterPanel # the global var name
for the list filter panel, filterpanel is not an item of the tabpanel
+ module_view_port_name: Ext.app.sf.ViewPort # the global var name
for the viewport
# module_app_init_partial: init_app # partial located in
the app/templates directory that adds panels to your custom layout.
format_date: "m/d/Y"
Modified:
plugins/ExtjsGeneratorPlugin/trunk/data/generator/ExtjsModule/admin/template/templates/_layout.js.php
===================================================================
---
plugins/ExtjsGeneratorPlugin/trunk/data/generator/ExtjsModule/admin/template/templates/_layout.js.php
2010-05-14 10:17:49 UTC (rev 29462)
+++
plugins/ExtjsGeneratorPlugin/trunk/data/generator/ExtjsModule/admin/template/templates/_layout.js.php
2010-05-14 12:15:49 UTC (rev 29463)
@@ -23,11 +23,12 @@
<?php if (sfConfig::get('app_extjs_gen_plugin_module_app_init_partial')): ?>
[?php
- $partialArr = array('sfExtjs3Plugin' => $sfExtjs3Plugin);
- //$partialArr['gridpanel'] = '<?php echo
sfConfig::get('app_extjs_gen_plugin_module_grid_panel_name',
'Ext.app.sf.GridPanel') ?>';
- $partialArr['tabpanel'] = '<?php echo
sfConfig::get('app_extjs_gen_plugin_module_tab_panel_name',
'Ext.app.sf.TabPanel') ?>';
+ $partialArr = array();
+ $partialArr['sfExtjs3Plugin'] = $sfExtjs3Plugin;
+ //$partialArr['gridpanel'] = '<?php echo
sfConfig::get('app_extjs_gen_plugin_module_grid_panel_name',
'Ext.app.sf.GridPanel') ?>';
+ $partialArr['tabpanel'] = '<?php echo
sfConfig::get('app_extjs_gen_plugin_module_tab_panel_name',
'Ext.app.sf.TabPanel') ?>';
<?php if($this->configuration->hasFilterForm()):?>
- $partialArr['filterpanel'] = '<?php echo
sfConfig::get('app_extjs_gen_plugin_module_filter_panel_name',
'Ext.app.sf.FilterPanel') ?>';
+ $partialArr['filterpanel'] = '<?php echo
sfConfig::get('app_extjs_gen_plugin_module_filter_panel_name',
'Ext.app.sf.FilterPanel') ?>';
<?php endif; ?>
include_partial('global/<?php echo
sfConfig::get('app_extjs_gen_plugin_module_app_init_partial') ?>', $partialArr);
?]
--
You received this message because you are subscribed to the Google Groups
"symfony SVN" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/symfony-svn?hl=en.