cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
MS5
Helper III
Helper III

format number when filling in

Hi,

 

I would like to format a number while the user is filling in that field, is this possible?

 

For example, if the number is 100000, I would like the user to see 100.000 when writting it. I have been able to do this after the form has been submitted but I would like to do it while the form is being submitted.

 

Thanks in advance!

9 REPLIES 9
OliverRodrigues
Super User
Super User

Hi, a few weeks ago I wrote a blog post on adding mask to a field within an Entity Form, this might be what you're looking for:

http://oliverrodrigues365.com/2020/04/15/power-apps-portals-adding-field-mask

 

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

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.




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.

Power Pages Super User | MVP


Oliver Rodrigues


 

Hi @MS5  and @OliverRodrigues ,

 

Answer from @OliverRodrigues will work only if the number field is actually text field in CDS. If it is Whole Number field during the submission you will receive an error that the input is incorrect. To solve this we can extend @OliverRodrigues answer next way:

  • hide initial number field
  • create a field that will serve as a masked input
  • place it after hidden initial field
  • apply a mask to that field
  • set oninput event to parse data from masked input and set in correct one

You can find code that implements those steps below.

let fieldName = "dwc_samplenumber";
//hide initial field
$("#" + fieldName).hide();
//create new masked input
let maskedInput = document.createElement("input");
maskedInput.className = "form-control";
maskedInput.id = "maskedInput";
//add function to set correct value
maskedInput.oninput = () => {
    let newValue = parseInt($("#maskedInput").val().replace(/\D/g, ''), 10);
    $("#" + fieldName).val(newValue);
}
//apply mask
$(maskedInput).mask('000.000.000');
//insert maskedInput after initial one
$(maskedInput).insertAfter($("#" + fieldName));

 

Hope this will help.

----------------------------------------------------
If you find this post helpful consider marking it as a solution to help others find it.

Hi @OOlashyn ,

 

First of all, sorry for the late answer, I have been very busy. 


I have tried your code with no luck, something must be wrong because if I hide the field at the end it the field is not hidden, but if I put it at the beginning, it does. 

 

This is the code I am using:

 

$(document).ready(function() {
  let fieldName = "cr027_importe";
  //hide initial field
  $("#" + fieldName).hide();
  //create new masked input
  let maskedInput = document.createElement("input");
  maskedInput.className = "form-control";
  maskedInput.id = "maskedInput";
  //add function to set correct value
  maskedInput.onInput = () => {
      let newValue = parseInt($("#maskedInput").val().replace(/\D/g, ''), 10);
      $("#" + fieldName).val(newValue);
  }
  //apply mask
  $(maskedInput).mask('000.000.000');
  //insert maskedInput after initial one
  $(maskedInput).insertAfter($("#" + fieldName));
});
 
Looking for sintax errors, I have tried to change "oninput" to "onInput", but it didn't change anything.
 
Thanks for your help!

Hi @MS5 ,

 

Sorry for the long reply. You don't need to change oninput to onInput. Can you verify that you followed @OliverRodrigues article and added mask.js library to your page? Code will not work without it. Sorry if I didn't make it clear enough with my answer. Also, can you check the Developer Console for any errors if you did add it? (Ctrl+Shift+I (on Windows in Chrome) > Console tab)?

----------------------------------------------------
If you find this post helpful consider marking it as a solution to help others find it.

Hi @OOlashyn,

 

Thank you for your quick response. After adding the necessary js library it worked! The only problem I am having is in the case I have values which are not integers, for example 3.192,12. The mask only lets me introduce 3.192, ignoring the "," character. I have modified the mask to "000.000.000,00" but it only solves part of the issue, only being able to introduce decimals if the number is big enough. The only solution that comes to mind is to modify the mask depending on the value introduced...

 

I was wondering if I could also introduce actions like the "oninput" for my normal inputs, to be able to calculate the value of another field, trying to do so doesn't work. This is the code I am using:

 

$(document).ready(function() {
  let baseImponible = "#cr027_baseimponiblenumber";
  let importeTotal = "#cr027_importe";
  let iva = "#cr027_iva";
  //hide initial field
  $(baseImponible).hide();
  //create new masked input
  let maskedInput = document.createElement("input");
  maskedInput.className = "form-control";
  maskedInput.id = "maskedInput";
  //add function to set correct value
  maskedInput.oninput = () => {
      let newValue = parseFloat($("#maskedInput").val().replace(/\D/g, ''), 10);
      $(baseImponible).val(newValue);
      let calculatedValue = (1 + parseInt($(iva).val().replace(/\D/g, ''), 10) / 100) * newValue;
      $(importeTotal).val(calculatedValue);
  }
  $(iva).oninput = () => {
      let newValue = parseFloat($("#maskedInput").val().replace(/\D/g, ''), 10);
      let calculatedValue = (1 + parseInt($(iva).val().replace(/\D/g, ''), 10) / 100) * newValue;
      $(importeTotal).val(calculatedValue);
  }
  //apply mask
  $(maskedInput).mask('000.000.000,00');
  //insert maskedInput after initial one
  $(maskedInput).insertAfter($(baseImponible));
});

hi @MS5 

can you try the following as mask:  .mask("#,##0.00", {reverse: true});


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

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.




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.

Power Pages Super User | MVP


Oliver Rodrigues


 

Hi @MS5 ,

 

You can find more about oniput event here. Regarding the code that you shared - it looks correct. If you are not using any mask input on your iva fields you can just use parseInt($(iva).val()). I would advise you try to add console loggers to see values and how it is working to locate where exactly issue is happening

 $(iva).oninput = () => {
      console.log("Iva On Input started");
      let newValue = parseFloat($("#maskedInput").val().replace(/\D/g, ''), 10);
      console.log("newValue", newValue);
      let calculatedValue = (1 + parseInt($(iva).val().replace(/\D/g, ''), 10) / 100) * newValue;
      console.log("calculatedValue", calculatedValue);
      $(importeTotal).val(calculatedValue);
  }

 

----------------------------------------------------
If you find this post helpful consider marking it as a solution to help others find it.

Hi @OOlashyn and @OliverRodrigues ,

 

I have tried adding the reverse clause that Oliver mentioned and it worked, the value you get when accessing the fields value is not the one I am visualizing because when introducing the number I can't introduce the "," but it works, I just have to divide it by 100.

 

Regarding the "oninput" event for the "iva" field (not the masked inputs I created), it is not firing when introducing the value. What I am trying is to calculate a "total" value from a multiplication of the values of the fields "base" and "iva". I want that when any of these two values are updated to recalculate the "total" value. What I have accomplished with the following code is to be able to calculate the "total" value only when the "base" field is updated by the user. If the user updates the "iva" value nothing happens, it looks like the "oninput" event is not linking well to that field.

 

Another funny thing that happens is that the mask for the "total" field only fires when the user modifies the input directly, is there a way to also apply the mask when I modify the value through JavaScript?

 

////////////////////////////////////////////////////////////////////////////////////////////////////////////////

Code:

 

$(document).ready(function() {

let baseImponible = "#cr027_baseimponiblenumber";
let importeTotal = "#cr027_importe";
let iva = "#cr027_iva";

//hide total field
$(importeTotal).hide();

//Create masked field for total
let maskedTotal = document.createElement("input");
maskedTotal.className = "form-control";
maskedTotal.id = "maskedTotal";

//add function to Total to set its mask when receiving input
maskedTotal.oninput = () => {
console.log("Masked total");
let newValue = parseFloat($("#maskedTotal").val().replace(/\D/g, ''), 10) / 100;
$(importeTotal).val(newValue);
}

//apply mask to total
$(maskedTotal).mask("###.##0,00", {reverse: true});
//insert masked total after original total
$(maskedTotal).insertAfter($(importeTotal));

//hide base field
$(baseImponible).hide();

//create new masked base
let maskedBase = document.createElement("input");
maskedBase.className = "form-control";
maskedBase.id = "maskedBase";
//add function to base to set its mask and to calculate the total using the field "iva"
maskedBase.oninput = () => {
console.log("Masked base");
let newValue = parseFloat($("#maskedBase").val().replace(/\D/g, ''), 10) / 100;
$(baseImponible).val(newValue);
let calculatedValue = (1 + parseInt($(iva).val().replace(/\D/g, ''), 10) / 100) * newValue;
$(maskedTotal).val(calculatedValue.toFixed(2));
}

//apply mask to base
$(maskedBase).mask("###.##0,00", {reverse: true});
//insert masked base
$(maskedBase).insertAfter($(baseImponible));

//Calculate total when the "iva" field is introduced also (we also calculate it when the base is introduced)
$(iva).oninput = () => {
console.log("Iva On Input started");
let newValue = parseFloat($("#maskedBase").val().replace(/\D/g, ''), 10) / 100;
console.log("newValue: ", newValue);
let calculatedValue = (1 + parseInt($(iva).val().replace(/\D/g, ''), 10) / 100) * newValue;
console.log("calculated Value: ", calculatedValue);
$(importeTotal).val(calculatedValue);
}


});

////////////////////////////////////////////////////////////////////////////////////////////////////////////////

 

Thanks for all the help!

Hi @MS5 ,

 

oninput method will fire only when user input information. It will not be triggered when you will update the data through code.

 

To fire input event you can use the trigger method in jquery directly after you modified the value:

// you need to update the value and then trigger input
$("#sampleFieldId").val("Some Sample Value");
$("#sampleFieldId").trigger("input");

// or you can chain them in one line
$("#sampleFieldId").val("Some Sample Value").trigger("input");
----------------------------------------------------
If you find this post helpful consider marking it as a solution to help others find it.

Helpful resources

Announcements

Power Platform Connections - Episode 7 | March 30, 2023

Episode Seven of Power Platform Connections sees David Warner and Hugo Bernier talk to Microsoft MVP Dian Taylor, alongside the latest news, product reviews, and community blogs.     Use the hashtag #PowerPlatformConnects on social media for a chance to have your work featured on the show!      Show schedule in this episode:    0:00 Cold Open 00:30 Show Intro 01:02 Dian Taylor Interview 18:03 Blogs & Articles 26:55 Outro & Bloopers    Check out the blogs and articles featured in this week’s episode:    https://francomusso.com/create-a-drag-and-drop-experience-to-upload-case-attachments @crmbizcoach https://www.youtube.com/watch?v=G3522H834Ro​/  @pranavkhuranauk https://github.com/pnp/powerapps-designtoolkit/tree/main/materialdesign%20components @MMe2K​ https://2die4it.com/2023/03/27/populate-a-dynamic-microsoft-word-template-in-power-automate-flow/ @StefanS365 https://d365goddess.com/viva-sales-administrator-settings/ @D365Goddess https://marketplace.visualstudio.com/items?itemName=megel.mme2k-powerapps-helper#Visualize_Dataverse... @MMe2K    Action requested:  Feel free to provide feedback on how we can make our community more inclusive and diverse.    This episode premiered live on our YouTube at 12pm PST on Thursday 30th March 2023.    Video series available at Power Platform Community YouTube channel.    Upcoming events:  Business Applications Launch – April 4th – Free and Virtual! M365 Conference - May 1-5th - Las Vegas Power Apps Developers Summit – May 19-20th - London European Power Platform conference – Jun. 20-22nd - Dublin Microsoft Power Platform Conference – Oct. 3-5th - Las Vegas    Join our Communities:  Power Apps Community Power Automate Community Power Virtual Agents Community Power Pages Community    If you’d like to hear from a specific community member in an upcoming recording and/or have specific questions for the Power Platform Connections team, please let us know. We will do our best to address all your requests or questions.   

Announcing | Super Users - 2023 Season 1

Super Users – 2023 Season 1    We are excited to kick off the Power Users Super User Program for 2023 - Season 1.  The Power Platform Super Users have done an amazing job in keeping the Power Platform communities helpful, accurate and responsive. We would like to send these amazing folks a big THANK YOU for their efforts.      Super User Season 1 | Contributions July 1, 2022 – December 31, 2022  Super User Season 2 | Contributions January 1, 2023 – June 30, 2023    Curious what a Super User is? Super Users are especially active community members who are eager to help others with their community questions. There are 2 Super User seasons in a year, and we monitor the community for new potential Super Users at the end of each season. Super Users are recognized in the community with both a rank name and icon next to their username, and a seasonal badge on their profile.    Power Apps  Power Automate  Power Virtual Agents  Power Pages  Pstork1*  Pstork1*  Pstork1*  OliverRodrigues  BCBuizer  Expiscornovus*  Expiscornovus*  ragavanrajan  AhmedSalih  grantjenkins  renatoromao    Mira_Ghaly*  Mira_Ghaly*      Sundeep_Malik*  Sundeep_Malik*      SudeepGhatakNZ*  SudeepGhatakNZ*      StretchFredrik*  StretchFredrik*      365-Assist*  365-Assist*      cha_cha  ekarim2020      timl  Hardesh15      iAm_ManCat  annajhaveri      SebS  Rhiassuring      LaurensM  abm      TheRobRush  Ankesh_49      WiZey  lbendlin      Nogueira1306  Kaif_Siddique      victorcp  RobElliott      dpoggemann  srduval      SBax  CFernandes      Roverandom  schwibach      Akser  CraigStewart      PowerRanger  MichaelAnnis      subsguts  David_MA      EricRegnier  edgonzales      zmansuri  GeorgiosG      ChrisPiasecki  ryule      AmDev  fchopo      phipps0218  tom_riha      theapurva  takolota     Akash17  momlo     BCLS776  Shuvam-rpa     rampprakash  ScottShearer     Rusk  ChristianAbata     cchannon  Koen5     a33ik  Heartholme     AaronKnox  okeks      Matren   David_MA     Alex_10        Jeff_Thorpe        poweractivate        Ramole        DianaBirkelbach        DavidZoon        AJ_Z        PriyankaGeethik        BrianS        StalinPonnusamy        HamidBee        CNT        Anonymous_Hippo        Anchov        KeithAtherton        alaabitar        Tolu_Victor        KRider        sperry1625        IPC_ahaas      zuurg    rubin_boer   cwebb365   Dorrinda   G1124   Gabibalaban   Manan-Malhotra   jcfDaniel   WarrenBelz   Waegemma   drrickryp   GuidoPreite      If an * is at the end of a user's name this means they are a Multi Super User, in more than one community. Please note this is not the final list, as we are pending a few acceptances.  Once they are received the list will be updated. 

Check out the new Power Platform Communities Front Door Experience!

We are excited to share the ‘Power Platform Communities Front Door’ experience with you!   Front Door brings together content from all the Power Platform communities into a single place for our community members, customers and low-code, no-code enthusiasts to learn, share and engage with peers, advocates, community program managers and our product team members. There are a host of features and new capabilities now available on Power Platform Communities Front Door to make content more discoverable for all power product community users which includes ForumsUser GroupsEventsCommunity highlightsCommunity by numbersLinks to all communities Users can see top discussions from across all the Power Platform communities and easily navigate to the latest or trending posts for further interaction. Additionally, they can filter to individual products as well.         Users can filter and browse the user group events from all power platform products with feature parity to existing community user group experience and added filtering capabilities.       Users can now explore user groups on the Power Platform Front Door landing page with capability to view all products in Power Platform.      Explore Power Platform Communities Front Door today. Visit Power Platform Community Front door to easily navigate to the different product communities, view a roll up of user groups, events and forums.

Microsoft Power Platform Conference | Registration Open | Oct. 3-5 2023

We are so excited to see you for the Microsoft Power Platform Conference in Las Vegas October 3-5 2023! But first, let's take a look back at some fun moments and the best community in tech from MPPC 2022 in Orlando, Florida.   Featuring guest speakers such as Charles Lamanna, Heather Cook, Julie Strauss, Nirav Shah, Ryan Cunningham, Sangya Singh, Stephen Siciliano, Hugo Bernier and many more.   Register today: https://www.powerplatformconf.com/   

Welcome! Congratulations on joining the Power Pages community!

Welcome to the Power Pages Community!   You're now a part of a vibrant group of peers and industry experts who are here to network, share knowledge, and even have a little fun.     Now that you're a member, you can enjoy the following resources:   The Power Pages Community Forums The forums are also a great place to connect with other Power Pages community members. Check the News & Announcements section for community highlights, find out about the latest community news, and learn about the Community Team. Share your feedback, earn custom profile badges, enter challenges to win prizes, and more.   Community Blog Our community members have learned some excellent tips and have keen insights on the future of business analysis. Head on over to the Community Blog to read the latest posts from around the world. Let us know if you'd like to become an author and contribute your own writing — everyone is welcome.   And that’s not all, we have Galleries of additional information such as the Community Connections & How To Videos & Webinars & Video Gallery and more to motivate, educate and inspire you.   Again, welcome to the Power Pages community family, we are so happy you have joined us! Whether you are brand new to the world of data or you are a seasoned veteran - our goal is to shape the community to be your ‘go to’ for support, networking, education, inspiration and encouragement as we enjoy this adventure together! Let us know in the Community Feedback forum if you have any questions or comments about your community experience, but for now – head on over to the forums Get Help with Power Pages and dive right in!   To learn more about the community and your account be sure to visit our Community Support Area. We look forward to seeing you in the Power Pages Community!   The Power Pages Community Team  

Users online (1,668)