Skip to main content
Community site session details

Community site session details

Session Id :
Power Pages - Power Apps Portals
Unanswered

Autopopulate fields in form of portal

(0) ShareShare
ReportReport
Posted on by 4

Hi, 

Is it possible to automatically populate fields based on data selected in the other fields in the Power Portal Forms ?
Eg: I have table ProductID, Name and Price. When the user selects ProductID, Name and Price should be filled in automatically.

Thanks in advance !

  • H V Profile Picture
    1,510 on at
    Re: Autopopulate fields in form of portal

    Hi @SaraRao 

     

    Yes, it is possible. You have to trigger onchange event of ProductId field. When user select/change the ProductId field, you can retrieve data of Name and Price fields.

    $(document).ready(function(){
     $("#new_logicalname").change(function () {
     // Get value of your trigger field
     let currentVal = $("#new_logicalname").val();
     
    	//Retrieve data using WebApi based on your requirements
    		
     });
     });

     

    Please refer this links: 

    https://docs.microsoft.com/en-us/power-apps/maker/portals/web-api-overview

    https://docs.microsoft.com/en-us/power-apps/maker/portals/read-operations

     

    You can retrieve data using below code:

    function getResponseData() {
     var response = null;
     try {
     $.ajax({
     type: "GET",
     url: "https://contoso.powerappsportals.com/_api/accounts(e0e11ba8-92f6-eb11-94ef-000d3a5aa607)",
     dataType: "json",
     cache: false,
     }).done(function(json) {
     response = json;
     });
     } catch (e) {
     console.log("getResponse :: " + e.message);
     }
     return response;
    }

     

    --------------------------
    If you like this post, give a Thumbs up. Where it solved your query, Mark as a Solution so it can help other people!

     

     

     

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Paul Stork – Community Spotlight

We are honored to recognize Paul Stork as our July 2025 Community…

Congratulations to the June Top 10 Community Leaders!

These are the community rock stars!

Announcing the Engage with the Community forum!

This forum is your space to connect, share, and grow!

Leaderboard > Power Pages

#1
Lucas001 Profile Picture

Lucas001 60 Super User 2025 Season 1

#2
Fubar Profile Picture

Fubar 55 Super User 2025 Season 1

#3
surya narayanan Profile Picture

surya narayanan 35