Welcome to the nuBuilder Forums!

Register and log in to access exclusive forums and content available only to registered users.

Modify jqueryui datepicker

Locked
rnott
Posts: 31
Joined: Fri Mar 14, 2014 6:14 pm

Modify jqueryui datepicker

Unread post by rnott »

I would like to modify the jqueryui datepicker in nuBuilder so that it will...
"Show month and year dropdowns in place of the static month/year header to facilitate navigation through large timeframes."

http://jqueryui.com/datepicker/#dropdown-month-year



Thanks,
You do not have the required permissions to view the files attached to this post.
rnott
Posts: 31
Joined: Fri Mar 14, 2014 6:14 pm

Re: Modify jqueryui datepicker

Unread post by rnott »

I modified the following lines in nuBuilderPro/nueditform.js and got the datepicker to show the month/year dropdowns

Code: Select all

...
               if(o[i].is_date && o[i].read_only != '1'){
                        $( "#"+e.id).datepicker({
                           changeMonth: true,
                           changeYear: true,
                           dateFormat: nuFormats[o[i].format].jquery
                        });
                }
...
massiws
Posts: 503
Joined: Thu May 24, 2012 2:08 am
Location: Milan, Italy
Contact:

Re: Modify jqueryui datepicker

Unread post by massiws »

Thanks for sharing.
Locked