FancyPrairie
Programmer
I’ve created a style like this:
<STYLE id=MyDefaults type=text/css>
.MyTextbox {Locked: TRUE}
</STYLE>
My tag looks like this:
<TEXTAREA class=MyTextbox id=MyControl…>
The following gives me an error. Says style.locked doesn’t exist
MyControl.style.Locked = "True"
However, this works
<TEXTAREA Id=MyControl style="Locked: TRUE">
Am I doing something wrong???? Can I not add a custom property to a css?
<STYLE id=MyDefaults type=text/css>
.MyTextbox {Locked: TRUE}
</STYLE>
My tag looks like this:
<TEXTAREA class=MyTextbox id=MyControl…>
The following gives me an error. Says style.locked doesn’t exist
MyControl.style.Locked = "True"
However, this works
<TEXTAREA Id=MyControl style="Locked: TRUE">
Am I doing something wrong???? Can I not add a custom property to a css?