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

Notifications

Announcements

Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Automate / Remove ReadOnly Attrib...
Power Automate
Unanswered

Remove ReadOnly Attribute from HTML Element in Edge browser

(0) ShareShare
ReportReport
Posted on by 65

Okay, so I am trying to interact with a date picker that is set to Read-Only and requires you to use the calendar picker interface to set the value.  If I go into the HTML and remove the readonly attribute, I am able to manually type into the input field and set the date so now I am trying to do that programmatically.

 

How would I go about this?

I have the same question (0)
  • Verified answer
    BI_RPA_Andy Profile Picture
    65 on at

    Sheesh, I was making this way too complicated...I was not aware of the 'Run JavaScript Function on web page' action!

     

    Here is the code I used.  Since the element didn't have an ID I just did a query using the element type and name.

     

    function ExecuteScript() 
    {
    	var elements = document.querySelectorAll('input[name="to"]');
    	
    	elements.forEach
    	(
    		function(element) 
    			{
    			element.removeAttribute('readonly');
    			}
    	);
    }

     

     

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

Forum hierarchy changes are complete!

In our never-ending quest to improve we are simplifying the forum hierarchy…

Ajay Kumar Gannamaneni – Community Spotlight

We are honored to recognize Ajay Kumar Gannamaneni as our Community Spotlight for December…

Leaderboard > Power Automate

#1
Michael E. Gernaey Profile Picture

Michael E. Gernaey 522 Super User 2025 Season 2

#2
Tomac Profile Picture

Tomac 364 Moderator

#3
abm abm Profile Picture

abm abm 243 Most Valuable Professional

Last 30 days Overall leaderboard