Hello
I added an EditBox in my project, I marked the properties as "Disabled" and "Read only", because it is a field only to view the data and not to be filled. However when publishing or viewing I can freely edit, delete or write data in this field, ie it is ignoring the properties "Disabled" and "Read only".
Read only from an EditBox does not work
Forum rules
IMPORTANT NOTE!!
DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.
PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
IMPORTANT NOTE!!
DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.
PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
Re: Read only from an EditBox does not work
I already figured out what it is, I pasted into "Initial value" a custom code and it looks like the interference:semua wrote: ↑Tue Feb 12, 2019 11:15 am Hello
I added an EditBox in my project, I marked the properties as "Disabled" and "Read only", because it is a field only to view the data and not to be filled. However when publishing or viewing I can freely edit, delete or write data in this field, ie it is ignoring the properties "Disabled" and "Read only".
Code: Select all
<link rel = "stylesheet" href = "style.css">
Re: Read only from an EditBox does not work
You cannot add code to a 'initial value' property. This results in invalid HTML code.
Re: Read only from an EditBox does not work
Well, I realized, I'm going to use custom html code then. Thank you.