web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Pages / No link appears when I...
Power Pages
Answered

No link appears when I add list and add edit action !!

(0) ShareShare
ReportReport
Posted on by Microsoft Employee

Hi everyone,

 

I created a list and created an action to update the form. However, the link is not appearing on the "Contact Id". Initially, it was appearing but when I modified the content of the list, it disappeared. What can be the reason and how to solve this?

 

hafizsultan242_0-1690253507037.png

 

Configuration is below:

 

hafizsultan242_1-1690253657543.png

Kind Regards,

Hafiz

 

 

Categories:
I have the same question (0)
  • Lucas001 Profile Picture
    2,535 Super User 2026 Season 1 on at

    Hello @Anonymous,

     

    this is the normal behavior for an editable table in power pages.

    Once you click on the edit link you will find a form and can edit all entries you beforehand assigned in the form.

     

    Do you want to have a button to edit the contact column and the row itself?

     

  • Community Power Platform Member Profile Picture
    Microsoft Employee on at

    Hi @Lucas001 ,

     

    Thank  you for your response. I wanted to have an editable link in the first entry of the table, so users can click the link and go to the edit form. Initially, editable link was appearing on Contact-id. However, it is no more visible after I modified a few columns. I am not sure, why editable link is not there on the Contact_id column.

     

    hafizsultan242_0-1690263223855.png

     

  • Verified answer
    Saud Ali Profile Picture
    812 Super User 2024 Season 1 on at

    Hi @Anonymous ,

     

    Please look into this snippet to set your column clickable. 

     

     

    $(document).ready(function () {
     SetLinkAllCells();
    });
    
    SetLinkAllCells = function () {
    
     var entityList = $(".entitylist.entity-grid").eq(0);
    
     entityList.on("loaded", function () {
     entityList.find("table tbody > tr").each(function (index, tr) {
     
     var primaryColumn = $(tr).find('td')[0];
    
     /// or retrieve column by name
     /// var primaryColumn = tr.find('td[data-attribute="name"]');
    
     var url = $(primaryColumn).find("a")[0].href;
     console.log("URL: " + url);
     if (!!url) {
     $(tr).find('td').each(function (index, td) {
     /// ignore action menu / dropdown
     if ($(td).attr("aria-label") == "action menu")
     return;
    
     var cellValue = $(td).text();
     /// clear td value 
     $(td).text("");
     var newElement = '<a href="' + url + '" class="details-link has-tooltip" data-toggle="tooltip">' + cellValue + '</a>';
     $(td).append(newElement);
     });
     }
     });
     });
    };

     

     

    For full post please check this out.

     

    Thanks,

    Saud

     

    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.

  • Lucas001 Profile Picture
    2,535 Super User 2026 Season 1 on at

    Hi @Anonymous,

     

    have a look at the post from @saudali_25. Just be sure that if you want to only have a clickable link on the first column, you will have to adjust the code posted by the post above. If every row shall be clickable the post from @saudali_25 is the way to go.

     

  • Community Power Platform Member Profile Picture
    Microsoft Employee on at

    Hi @saudali_25 , @Lucas001 ,

     

    Thank you so much for providing such an amazing support. The problem is fixed using the solution provided by @saudali_25 .

     

    Thank you again !!

     

    Kind Regards,

    Hafiz

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

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Congratulations to the March Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Pages

#1
rezarizvii Profile Picture

rezarizvii 53

#2
DP_Prabh Profile Picture

DP_Prabh 40

#3
oliver.rodrigues Profile Picture

oliver.rodrigues 28 Most Valuable Professional

Last 30 days Overall leaderboard