details: https://code.openbravo.com/erp/devel/pi/rev/ebeddf8b3031 changeset: 22905:ebeddf8b3031 user: Augusto Mauch <augusto.mauch <at> openbravo.com> date: Thu Apr 24 10:06:42 2014 +0200 summary: Fixes issue 26355: Date fields are not displayed properly in the tree grid view
The problem was that the fix done to fix the issue [1] was only being applied to root nodes, so the date fields were still not being displayed properly for non root nodes. [1] https://issues.openbravo.com/view.php?id=26228 diffstat: modules/org.openbravo.userinterface.smartclient/web/org.openbravo.userinterface.smartclient/js/ob-smartclient.js | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diffs (12 lines): diff -r efc02cb4e645 -r ebeddf8b3031 modules/org.openbravo.userinterface.smartclient/web/org.openbravo.userinterface.smartclient/js/ob-smartclient.js --- a/modules/org.openbravo.userinterface.smartclient/web/org.openbravo.userinterface.smartclient/js/ob-smartclient.js Wed Apr 23 15:04:32 2014 +0200 +++ b/modules/org.openbravo.userinterface.smartclient/web/org.openbravo.userinterface.smartclient/js/ob-smartclient.js Thu Apr 24 10:06:42 2014 +0200 @@ -114,7 +114,7 @@ }, dataArrived: function (parentNode) { - var children = this.getChildren(), + var children = this.getChildren(parentNode), target = window[this.componentId]; target.transformData(children); } ------------------------------------------------------------------------------ Start Your Social Network Today - Download eXo Platform Build your Enterprise Intranet with eXo Platform Software Java Based Open Source Intranet - Social, Extensible, Cloud Ready Get Started Now And Turn Your Intranet Into A Collaboration Platform http://p.sf.net/sfu/ExoPlatform _______________________________________________ Openbravo-commits mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openbravo-commits
