Dear All, I have a problem with Thai (Buddhist) locale as below. - I am using OX 5.6.1 - The problem I found was OX didn't displayed year for field with data type Timestamp properly. - Later I found that date format passed through function javascript:showCalendar() was somewhat strange --> "%m/%e/%m8 %l:%M %p" - So I checked in method Dates.dateTimeFormatForJSCalendar() and found that year 1971 was hard-coded - Since my case Calendar.getInstance() would return with BuddhistCalendar implementation,...
Dear All, I have a problem with Thai (Buddhist) locale as below. - I am using OX 5.6.1 - The problem I found was OX didn't displayed year for field with data type Timestamp properly. - Later I found that date format passed through function javascript:showCalendar() was somewhat strange --> "%m/%e/%m8 %l:%M %p" - So I checked in method Dates.dateTimeFormatForJSCalendar() and found that year 1971 was hard-coded - Since my case Calendar.getInstance() would return with BuddhistCalendar implementation,...
Hi, I have an entity called Proposal and in this entity there's a property of a collection of embeddable class called ProposalDet as below @ListProperties("prefix,value,suffix,mandatory,hidden,readOnly,inputName") @ElementCollection(fetch=FetchType.EAGER) private List<ProposalDet> details; I would like to know how to hide header of this ProposalDet on UI (i.e., "Prefix", "Value", "Suffix", ...), please. The reason is to simplify the screen as well as shorten screen height as there a lot more information...
Hi, I have an entity called Proposal and in this entity there's a property of a collection of embeddable class called ProposalDet as below @ListProperties("prefix,value,suffix,mandatory,hidden,readOnly,inputName") @ElementCollection(fetch=FetchType.EAGER) private List<ProposalDet> details; I would like to know how to hide header of this ProposalDet on UI (i.e., "Prefix", "Value", "Suffix", ...), please. The reason is to simplify the screen as well as shorten screen height as there a lot more information...
Hi, I have an entity call Proposal and in this entity there's a property of a collection of embeddable class called ProposalDet as below @ListProperties("prefix,value,suffix,mandatory,hidden,readOnly,inputName") @ElementCollection(fetch=FetchType.EAGER) private List<ProposalDet> details; I would like to know how to hide header of this ProposalDet on UI (i.e., "Prefix", "Value", "Suffix", ...), please. The reason is to simplify the screen as well as shorten screen height as there a lot more information...
FYI - My temporary workaround is Locale.setDefault(Locale.ENGLISH);
Have you tried this -- Locale.setDefault(new Locale("en", "IN")); ? You might want to put it anywhere that will be executed first e.g., index.jsp. I am not sure if it's going to be working for you but it worked in my case for Thai locale.
Dear All, I have a problem with Thai (Buddhist) locale as below. - I am using OX 5.6.1 - The problem I found was OX didn't displayed year for field with data type Timestamp properly. - Later I found that date format passed through function javascript:showCalendar() was somewhat strange --> "%m/%e/%m8 %l:%M %p" - So I checked in method Dates.dateTimeFormatForJSCalendar() and found that year 1971 was hard-coded - Since my case Calendar.getInstance() would return with BuddhistCalendar implementation,...