Click here to Skip to main content
15,885,944 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I am using power portal to create a form. I am using a basic form and adding JQuery to it. I have an 'deactivate item number' field that needs to show suggested options as the user types.

The table has two columns: item number (a number) and delete (true/false), and it is also on powerapps.

I need the form to
1. get the data from the table
2. show the user the item numbers that match
3. filter the results to only show the numbers where delete=true.

Does anyone know how to add the table as a source and if the code I have so far will be able to do these three things? Thank you for any help

What I have tried:

$(document).ready(function() {
    $("#pn_deactivateitemnumber").autocomplete({
        source: [""],
        minLength:0
    }).bind('focus', function(){ $(this).autocomplete("search", "True"); } );
});
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900