cancel
Showing results for 
Search instead for 
Did you mean: 
Reply

How to create 2 Date Pickers, with validation of dates and range, in a Portal Page

Hi All

 

I need to create a Portal page with 2 date pickers. I'm planning on creating a new web/page template that the page will use. I need to validate the date range (i.e end must be after start) and set a colour for the picker. What is the best approach, JQuery, Liquid, other?

 

Thanks

6 REPLIES 6

Liquid is only helpful for retrieving data here, not for creating an HTML element itself or for storing any data. What is the purpose of the dates?

Are they being stored on a table? If so, you can just add the changes onload to the standard date picker elements created by adding those column types to a form.

Are they just to apply some kind of custom filtering? If so, you can really use any library you want, but using the basic date time picker included already would be pretty simple.

Quick tip on getting started with finding the OOTB element's DateTimePicker object in portals: Tip #827: Restricting date picker on portal forms | Power Platform & Dynamics CRM Tip Of The Day

Documentation for the library used here (Bootstrap DateTimePicker extension): DateTime Picker · Bootstrap (malot.fr)

Hi justinburch

Thanks for the reply. The dates are used along with some other values which are passed to an Azure function. The function will then retrieve data based on the range of the two dates.

 

Hi @paulsnolan,

So far it sounds like you might be okay to just use whatever library you want to. Here are some additional general considerations:

  1. If the data to the function is client-side, you'll need to be conscious of how you secure the end-point or be comfortable with it being exposed - recommendation would be to put it behind Azure API management and/or do token validation from the portal's public key
  2. If the data to the function is handled server-side, then you'll want these to be columns on a form and easiest would be to use the OOTB DateTimePicker, but you could also hide this and replace with a custom control/library if you really don't like the control
  3. If you do use something custom here, keep in mind that if consistency is important, you will also need to replace all of the other datetimepicker controls in your portal - another reason it might be simpler to override the OOTB with a global CSS file for the colors and onload metadata changes to update the range restriction

Hi @paulsnolan , 

 

       @justinburch has mentioned significant points especially about client or server side decision and the consistency across your portal. 

 

If it is going to be a client side using jQuery,CSS and HTML then following are the steps for you. (Again please follow what justin has mentioned about securing API) 

 

In Portal Management: 

 

Step 1: Creating Web Template: 

1. Under content > Web Templates > Create New template 

2. Give a name "DatePickerWithValidation" as an example 

3. Choose your website 

4. Then paste the following code as an example 

<!-- Latest compiled and minified CSS -->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">

<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.17.37/css/bootstrap-datetimepicker.min.css" />

<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.6/moment.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>

<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.17.37/js/bootstrap-datetimepicker.min.js"></script>




<div class="flex-col-sm-5">
                              <div class="flex-row">
                                 <div class="flex-col-sm-5">
                                    <div class="form-field-wrapper">
                                       <div class="input-group date datetimepickerclass" id="datetimepicker1">
                                          <input type="text" id="datetimepicker1"   placeholder="Start Date">
                                          <span class="input-group-addon">
                                          <span class="glyphicon glyphicon-calendar"></span>
                                          </span>
                                       </div>
                                    </div>
                                 </div>
                                 <div class="flex-col-sm-5">
                                    <div class="form-field-wrapper">
                                       <div class="input-group date datetimepickerclass" id="datetimepicker2">
                                          <input type="text" id="datetimepicker2" placeholder="End Date">
                                          <span class="input-group-addon">
                                          <span class="glyphicon glyphicon-calendar"></span>
                                          </span>
                                       </div>
                                    </div>
                                 </div>
                              </div>
                           </div>

 

 

 

 

 

Step 2:  Creating Page Templates 

 

1. In Portal Management > Website > Page Template 

2. Create New  and give a name of your choice (DatePickerPageTemplate) 

3. And then choose your web template from the above step. Screenshot below 

 

ragavanrajan_0-1613943439065.png

 

Step 3: Creating Web page 

Now create your web page using Portal studio under the template you can see the "DatePickerPageTemplate

 

ragavanrajan_1-1613943602881.png

 

 

Step 4: Adding Custom JavaScript and CSS to the recently added web page 

 

1. In portal management > open the web page which you have created 

2.  Under Localized Content > Select the page 

3. Advanced > under Custom Javascript 

 

$(function () {


  var start_date1 ='';
  var end_date1 = '';
  
  if(start_date1=='' && end_date1=='')
  {
   $('#datetimepicker1').datetimepicker({
       useCurrent: false,
       
       
       format: 'DD/MM/YYYY'
   }).on('dp.change', function(e){
     console.log('here1');
     console.log(e);
  
     $(".day").click(function(){
      $("a[data-action='togglePicker']").trigger('click');
    });


     $('#datetimepicker2').data("DateTimePicker").minDate(e.date);
  
      
   });
  
  
           $('#datetimepicker2').datetimepicker({
  useCurrent: false,
  format: 'DD/MM/YYYY'
  }).on('dp.change', function(e){
  console.log(e);
  console.log('here2');
  $('#datetimepicker1').data("DateTimePicker").maxDate(e.date);
  
  
  });
  }
  

  
  });


  $("#beacon").change(function(){
    alert($(this).val());
});

 

4. Under Custom CSS paste the following  (modify according to your need) 

 

input[type="text"], textarea, input[type="password"] {
    font-size: 16px;
    border: 1px solid #ececec75;
    width: 100%;
    padding: 12px 20px;
    margin: 0 0 8px 0;
    resize: none;
    background: #f5f5f5;
    -webkit-appearance: none;
    border-radius: 2px;
    font-weight: 200;
}

.flex-row {
    display: flex;
    flex: 1;
}

.flex-col-sm-5 {
    flex: 1;
    padding: 0 10px;
}
.form-field-wrapper {
    margin: 0 0 20px 0;
}

span.input-group-addon {
    background: transparent;
    position: absolute;
    border: 0;
    top: 41%;
    right: 0;
    display: block;
    width: 100%;
    height: 100%;
    text-align: right;
    transform: translateY(-50%);
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

Kudos to Codepen  for this !! 

 

Now back to portal studio > press sync configuration and browse website 

And the output you will get it 

 

ragavanrajan_2-1613943844277.png

 

Hope it helps. 

------------

If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.

 

Fubar
Multi Super User
Multi Super User

Date picker on the Portal can be a pain as it is not well documented, and you have to watch out for old examples as at some point the picker changed and the old stuff doesn't work.

 

One of the key things that is hard to find doco on is the on change event "dp.change" as show in @ragavanrajan example code above as it is not the expected "change".

 

Some additional useful jQuery for the date picker on the Portal for date fields on the form from CDS/Dataverse (rather than just adding a custom date picker to a template).

Just a few code snippets for the date picker

// disable the date field and picker
$("#your_fieldname")  // input control
   .next()   // the date picker container
   .data("DateTimePicker") // the date picker object
   .disable();

// enable the control after disabling
$("#your_fieldname").next().data("DateTimePicker").enable();

// show the date picker (like someone clicked the icon)
$("#your_fieldname").next().data("DateTimePicker").show();

// disable dates in the past
$("#your_fieldname").next().data("DateTimePicker").minDate(moment()) 

// disable dates in the future (5 days in this example)
$("#your_fieldname").next().data("DateTimePicker").maxDate(moment().add(5,'days')) 

 

 

Thank you all for your replies. I'll let you know how I get on

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

Dear Community Members,   We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd.   During this period, members will not be able to Kudo, Comment, or Reply to any posts.   On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities.   What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!

Summer of Solutions | Week 4 Results |Winners will be posted on July 24th

We are excited to announce the Summer of Solutions Challenge!    This challenge is kicking off on Monday, June 17th and will run for (4) weeks.  The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions to as many questions as you can. Answers can be provided in all the communities.    Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”)   - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024   Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods.  You must enter into each weekly Entry Period separately.   How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different.    Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers.  At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing.  Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random.  Individuals will be contacted before the announcement with the opportunity to claim or deny the prize.  Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners.   Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event.   ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE**   Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 1: Community MembersSolutionsSuper UsersSolutionsPower Pages @Inogic  1   @ragavanrajan  2 @aofosu  1 @Jcook  1Open  @OliverRodrigues  1Open  @Lucas001  1Open Open    Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Week 2: Community MembersSolutionsSuper UsersSolutionsPower Pages @taraubianca25  2 @EmadBeshai  2 @ALP2  2@Fubar 2 @ekluth1  2@ragavanrajan 1 @mandela  1@OliverRodrigues 1 @Ajlan  1Open   @elishafxx  1    @TA_Jeremy  1    @helio1981  1       Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 3:Community MembersSolutionsSuper UsersSolutionsPower PagesInogic2@EmadBeshai 6Ajlan1@ragavanrajan 4CraigWarnholtz1@Fubar 4  @Jcook 3  @OliverRodrigues2   Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Week 4:Community MembersSolutionsSuper UsersSolutionsPower PagesHenryed071Fubar3Inogic1OliverRodrigues2JacoMathew1EmadBeshai2faruk11  TA_Jeremy1   shubhambhangale1   doug-ppc1   hubjes1  

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

  On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners.    The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights.    Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.    

Updates to Transitions in the Power Platform Communities

We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for.  We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer.   Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together.   Here's to new beginnings and endless possibilities!   If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport.   To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages

Users online (1,731)