Skip to content
Snippets Groups Projects
Commit 5f701990 authored by LE GAC Renaud's avatar LE GAC Renaud
Browse files

Bug fixed, no star in the label for field in GridFilter.

parent c6fd8f5e
No related branches found
No related tags found
No related merge requests found
......@@ -527,13 +527,17 @@ def to_gridFilter(table, **kwargs):
# remove field constraints making no sense for a filter
if 'allowBlank' in cfg:
cfg["allowBlank"] = True
if 'readOnly' in cfg:
cfg['readOnly'] = False
if 'value' in cfg:
del cfg['value']
# Remove the star in the label for required field
if field.notnull and 'afterLabelTextTpl' in cfg:
del cfg['afterLabelTextTpl']
# replace all textarea by textfield
if cfg['xtype'] == 'xtextarea':
cfg['xtype'] = 'xtextfield'
......
......@@ -2,6 +2,8 @@
HEAD
- Consolidation version
0.6.1.0 (Mar 2014)
- Consolidation version running with Ext JS 4.2.1
- Deploy the dynamic loading when running in debug mode.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment