Web Form - Edit Page

Hi,
In my webform i have five fields. If the user after saving the webform and select the edit option i want to make three fields read only in edit page. How to do that?

I want to hide these fields in edit web form page
select_the_survey_questions,
choose_number_of_questions,
choose_number_of_choice

Thankyou in advance

same question I would request you to kindly post the answer when you get it. Thanks in advance

if (window.location.href.indexOf(“new”) > -1) {
frappe.web_form.set_df_property(“fieldname”, “hidden”, “1”);
}
This will hide the fieldname in webform. for edit webform it shows the field you can try this it’s working for me

1 Like