Openbravo Issue Tracking System - Openbravo ERP
View Issue Details
0014046Openbravo ERPZ. Otherspublic2010-07-26 13:232010-12-16 22:15
shuehner 
mtaal 
urgentminorhave not tried
closedfixed 
5
2.50 
pi 
No
Smartclient
No
0014046: Research how to set filterEditor (Classname) on (custom) type-level
Background:
Using smartclient8 nightly build uses a different filterEditor-widget for date fields by default. This widget uses a different (advanced) datasource protocol not yet implemented in the DataSource backend.

So until this backend-support is implemented we need to use the old filterEditor widget to be able to do test/use smartclient8 nightly builds.

A prototype code to hardcode the date-types to the old widgets in the selector could be done like this:

         var dsType = this.dataSource.getField(gridField.name).type;
          if (dsType === 'org.openbravo.base.model.domaintype.DatetimeDomainType') {
              gridField.filterEditorType = 'DateTimeItem';
          } else if (dsType === 'org.openbravo.base.model.domaintype.DateDomainType') {
              gridField.filterEditorType = 'DateItem';
          }

However doing this on the (custom) type definition level would be a better solution.
No tags attached.
Issue History
2010-07-26 13:23shuehnerNew Issue
2010-07-26 13:23shuehnerAssigned To => mtaal
2010-07-26 13:23shuehnerOBNetwork customer => No
2010-07-26 13:27shuehnerNote Added: 0029558
2010-12-06 07:48alostaleStatusnew => scheduled
2010-12-08 11:18mtaalNote Added: 0033068
2010-12-08 11:18mtaalStatusscheduled => resolved
2010-12-08 11:18mtaalFixed in Version => pi
2010-12-08 11:18mtaalFixed in SCM revision => .
2010-12-08 11:18mtaalResolutionopen => fixed
2010-12-14 11:52shuehnerNote Added: 0033156
2010-12-14 11:52shuehnerStatusresolved => closed
2010-12-16 22:15anonymoussf_bug_id0 => 3138776

Notes
(0029558)
shuehner   
2010-07-26 13:27   
Relevant sc forum post about the changed default filterEditor:
http://forums.smartclient.com/showthread.php?t=11605&highlight=AdvancedCriteria [^]
(0033068)
mtaal   
2010-12-08 11:18   
This has been resolved with the introduction of the UIDefinition concept.

See the org.openbravo.client.kernel.reference package in the kernel module
(0033156)
shuehner   
2010-12-14 11:52   
New UIDefinition classes allow for specifying filterEditor.