Skip to main content

Notifications

Community site session details

Community site session details

Session Id : Vqd8zSlqpApW2R0Zi+7yAe
Power Apps - Microsoft Dataverse
Unanswered

Table Control edit form on a different screen

Like (0) ShareShare
ReportReport
Posted on 2 Mar 2024 09:49:12 by 1,151

Hi,

Looking over some vids regarding Canvas app and the new Table control. They all show the form to the right of the table on the same screen. When you click on a row, it populates the form, then a save button is added. (dataverse table)

 

My app will predominantly run on a mobile device so I want to add there edit form on its own screen.

 

Ive worked out populating the screen but can't work out how to navigate to it when double clicking on a line in the table

 

Thanks in advance

 

Todd

Categories:
  • Shashank Bhide Profile Picture
    934 Super User 2025 Season 1 on 04 Mar 2024 at 08:26:00
    Re: Table Control edit form on a different screen

    I'm not sure about double clicking, but Table control publishes "OnSelect" event and "selected" property, so you could technically use a hidden form bound to your data source and show it when "selected" is true, and use the table control's "OnSelect" to drive form's show/hide logic

  • AhmedSalih Profile Picture
    6,678 Super User 2025 Season 1 on 04 Mar 2024 at 00:05:57
    Re: Table Control edit form on a different screen

    Hello @Tango, you can achieve this through the column control of the new table view control. Columns in the table have OnSelect property, set it this formula and change it as needed:

     

    Navigate(
     Screen2,//Screen that has an Edit Form (Make Sure the Item Propoerty of that Form is set to selectedRecord
     ScreenTransition.CoverRight,
     {selectedRecord: DataTable1.Selected}
    )

     

    New Table Navigation Power FX.gif

     

    If my reply helped you, please give a 👍 If it solved your issue, please give a 👍 & accept it as the Solution to help other community members find it more.

    Visit my Blog: ahmedsalih.blog

    Visit my YouTube Channel: https://www.youtube.com/@powerplatformplace/videos

    Microsoft Business Application MVP

     

  • BhargavPatel Profile Picture
    628 Super User 2025 Season 1 on 02 Mar 2024 at 20:15:29
    Re: Table Control edit form on a different screen

    Have to tried adding function Navigate(<formScreen>) at the end of code you use to populate the form?

  • Drew Poggemann Profile Picture
    9,278 Most Valuable Professional on 02 Mar 2024 at 12:43:57
    Re: Table Control edit form on a different screen

    Hi @Tango ,

     

    I don't work a ton with canvas apps but this appears very similar to what you are trying to do?  https://powerusers.microsoft.com/t5/Building-Power-Apps/Auto-populate-Form-with-gallery-selection-from-multiple-screens/td-p/2442669 

     

    Does this help?  If not I can try to recreate...

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

Understanding Microsoft Agents - Introductory Session

Confused about how agents work across the Microsoft ecosystem? Register today!

Warren Belz – Community Spotlight

We are honored to recognize Warren Belz as our May 2025 Community…

Kudos to the March Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 146,731 Most Valuable Professional

#2
RandyHayes Profile Picture

RandyHayes 76,287 Super User 2024 Season 1

#3
Pstork1 Profile Picture

Pstork1 66,077 Most Valuable Professional

Leaderboard

Featured topics

Loading started