Skip to main content
Nintex Community Menu Bar
Solved

Override the standard date picker

  • July 9, 2024
  • 15 replies
  • 6 views
  • Translate

Forum|alt.badge.img+2

For many Date fields, I need to override the standard date picker with my own custom date picker. Has anyone done this? If so, sample code?

Best answer by Zach_McElrath

Skuid’s Datepicker is based on the jQuery UI Datepicker, and as such can be customized using the jQuery UI Datepicker API, globally for all Datepicker instances in a particular Skuid page, or for a particular Datepicker instance. Example Use Case: -Show Month picker -Show Year Picker, showing 85 Years ago to the Present Year To do this in a particular Skuid Page, add a new JavaScript Resource, of type “Inline”, with this as its content:

(function(skuid){ var $ = skuid.$; // Global datepicker settings override for this page $.datepicker.setDefaults({ changeMonth: true, changeYear: true, yearRange: "-85:-0" }); })(skuid); 

This will affect all Datepickers on the current Skuid Page, as well as in any included Skuid Pages.

View original
Did this topic help you find an answer to your question?
This topic has been closed for comments

15 replies

Forum|alt.badge.img+3

I have the same need. Specifically we need to allow people to navigate to past years much more easily, such as in the case of adding a birth date.

Translate

Forum|alt.badge.img+9
  • 108 replies
  • July 9, 2024

Thaddeus, For a date in the past you can just type the date into the field… ignoring the date picker. For most dates in the past like that you know which date you want… so the advantages of the calendar (seeing which day is a friday, etc) are not as important. Once you enter a date in the past, if you click again on that date the date picker will open to the past month and year of your date.

Translate

Forum|alt.badge.img+3

Unfortunately, our portal users don’t seem to get this. They want to stick with the mouse.

Translate

Forum|alt.badge.img+13

Skuid’s Datepicker is based on the jQuery UI Datepicker, and as such can be customized using the jQuery UI Datepicker API, globally for all Datepicker instances in a particular Skuid page, or for a particular Datepicker instance. Example Use Case: -Show Month picker -Show Year Picker, showing 85 Years ago to the Present Year To do this in a particular Skuid Page, add a new JavaScript Resource, of type “Inline”, with this as its content:

(function(skuid){ var $ = skuid.$; // Global datepicker settings override for this page $.datepicker.setDefaults({ changeMonth: true, changeYear: true, yearRange: "-85:-0" }); })(skuid); 

This will affect all Datepickers on the current Skuid Page, as well as in any included Skuid Pages.

Translate

Forum|alt.badge.img+6

Hi Zach,

I try that code in my skuid page and its work perfectly .

But that will apply for all date pickers. Can you please let me know how can i override date picker for only single instance of a picker instead of globally override all date picker in  a page ?

Thanks,
Rajendra

Translate

Forum|alt.badge.img+13

To override a single datepicker, you will need to use a Custom Field Renderer Snippet. Here’s how that’s done:

Add a new JavaScript Resource with location “Inline (Snippet)”, named “DatepickerOverride” or something like that, with the following Body:

var field = arguments[0], <br />&nbsp; &nbsp; &nbsp;value = arguments[1];<br />skuid&#46;ui&#46;fieldRenderers[field&#46;metadata&#46;displaytype][field&#46;mode](field,value); if (field&#46;mode==='edit'){<br /> var dateInput = field&#46;element&#46;find('input&#46;hasDatepicker');<br /> dateInput&#46;datepicker( "option", "changeMonth", true );<br /> dateInput&#46;datepicker( "option", "changeYear", true );<br /> dateInput&#46;datepicker( "option", "yearRange", "-85:-0" );<br /> dateInput&#46;datepicker("refresh"); }


Then in your Field Editor / Table, change the field / columns’ properties to set “Field Renderer” to “Custom (Run a Snippet)”, and then for “Render Snippet” put “DatepickerOverride”.

Translate

Forum|alt.badge.img+6

Thanks Zach!

Translate

Forum|alt.badge.img+13

I just made a few changes to the Snippet, but I’m done now.

Translate

Forum|alt.badge.img+9

Thanks for this! I’m trying to make my datepicker inline instead of a pop-up, but since this isn’t really an option of the datepicker and instead how it is rendered. How would I change that?

Translate

Forum|alt.badge.img+9

I would like to add a helpful UI/UX addition to this solution is to change the CSS of the unselectable dates (for example greying out the unselectable dates). See the CSS we used successfully below:

.ui-datepicker-unselectable .ui-state-disabled> .ui-datepicker.ui-widget-content td a, .ui-datepicker.ui-widget-content td span{ background: #d8d8d8; color: #7f7f7f; border: none; cursor: not-allowed; } 


Translate

annajosephine
Nintex Employee
Forum|alt.badge.img+18
  • Nintex Employee
  • 867 replies
  • July 9, 2024

Thanks for sharing this, Conlan!

Translate

Forum|alt.badge.img+8

Wondering how to accomplish an override of datepickers on a skuid page being rendered in lightning using the Skuid Page lightning component? Seems like the Inline Javascript Resource solution (from Zach’s post, similar to one I’m working with in my org) is not compatible/will not load properly.  

Translate

annajosephine
Nintex Employee
Forum|alt.badge.img+18
  • Nintex Employee
  • 867 replies
  • July 9, 2024
  • Hey Kaede, can you share the snippet you're using? There are a few in this post and I want to make sure I'm looking at the right one.
  • When you say it's not loading, what exactly is happening? Are you getting an error message?

Lightning is stricter when it comes to Javascript, so that may be one of the issues at play here.

Translate

Forum|alt.badge.img+8
Anna_Wiersema:
  • Hey Kaede, can you share the snippet you're using? There are a few in this post and I want to make sure I'm looking at the right one.
  • When you say it's not loading, what exactly is happening? Are you getting an error message?

Lightning is stricter when it comes to Javascript, so that may be one of the issues at play here.

Here’s the snippet I copied over into the v2 page I’m building.

When I preview the page, it is completely blank. Here are the console details:

When I remove the snippet, the page loads fine (but doesn’t work the way I need it to - because I need the date picker to work differently )

Translate

annajosephine
Nintex Employee
Forum|alt.badge.img+18
  • Nintex Employee
  • 867 replies
  • July 9, 2024

Hi Kaede, I just wanted to give you an update here: the specific reason that the code isn’t working in v2 is that Skuid v2 fields don’t use the jQuery UI datepicker.

I’ve gone ahead and created a new idea for date picker customization in v2. You can view this idea and vote it up here: http://community.skuid.com/discussion/8015275/date-picker-customization-in-v2

Translate

Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie Settings