Details
Description
For some users, having the week shown in dropdown calendars is an important thing.
This is what it looks like:
There is an option to show week numbers in the dropdown date picker used by OFBiz. (datetimepicker)
It can be done by adding "showWeek: true," in the datetimepicker calls in framework/widget/templates/htmlFormMacroLibrary.ftl.
Proposed patch for trunk:
--- framework/widget/templates/htmlFormMacroLibrary.ftl +++ framework/widget/templates/htmlFormMacroLibrary.ftl @@ -181,6 +181,7 @@ stepMinute: 1, stepSecond: 1, </#if> + showWeek: true, showOn: 'button', buttonImage: '', buttonText: '', @@ -495,6 +496,7 @@ stepMinute: 5, stepSecond: 10, </#if> + showWeek: true, showOn: 'button', buttonImage: '', buttonText: '', @@ -531,6 +533,7 @@ stepMinute: 5, stepSecond: 10, </#if> + showWeek: true, showOn: 'button', buttonImage: '', buttonText: '',