By default all properties in Editor's Popup Windows
(Table properties, Image properties etc.) are enabled. Sometimes it is necessary to
prohibit some properties direct changing by user.
For Example, you want user to select an image
in Image properties Popup using Browse button only.
In this case you should prohibit Image URL field use.
Sample ASP.NET
<ed:Editor id="editor" imageBrowse="myImageBrowse.aspx" runat="server"> <EnabledImageProperties URL="false" /> <EnabledBgImageProperties URL="false" /> </ed:Editor>
You will see the folowing Image properties Popup.
See PopupProperties.aspx example in downloaded zip file.
See also Editor inner properties page for details.
| |