| Name |
Description |
AdditionalCss
|
String. Gets or sets comma separated paths of additional CSS files for this popup.
(Inherited from Popup.)
|
AvailableExtensions
|
String overridable. Gets or sets semicolon separated file extensions available for uploading.
(Inherited from GalleryManager.)
Default "swf".
|
AutoDimensions
|
Bool sealed. Gets a value indicating whether the size of the popup is determining automatically.
(Inherited from Popup.)
Always true.
|
ClientID
|
String. Gets the server control identifier generated by ASP.NET.
(Inherited from Control.)
|
CssPath
|
String. Gets or sets a style file path.
(Inherited from Popup.)
By default embedded CSS file is used.
|
DescriptionExtension
|
String. Gets or sets the extension of description files.
(Inherited from GalleryManager.)
The full name of the description file is formed with appending this extension to the full name of the target file.
For example, the "MyFile.ext" file can have
a description file named "MyFile.ext.description".
If the description file exists for the selected file, then its text content is shown in the preview panel of the Gallery Manager.
If this property is set to empty, then no description files will be used at all.
Default "description".
|
DuplicateFileMessage
|
String overridable. Gets the text for an alert window when the user tries to create a folder with duplicate name.
(Inherited from GalleryManager.)
|
GalleryFolders
|
String overridable. Gets or sets semicolon separated relative URL's of gallery folders.
(Inherited from GalleryManager.)
Default "~/App_Obout/HTMLEditor/FlashGallery".
|
GalleryNames
|
String overridable. Gets or sets semicolon separated gallery names associated with the GalleryFolders property.
(Inherited from GalleryManager.)
Default "Flash Gallery".
|
HideAddFolderButton
|
Bool. Gets or sets a value indicating whether to hide the 'Add folder' button.
(Inherited from GalleryManager.)
Default false.
|
HideDeleteButton
|
Bool. Gets or sets a value indicating whether to hide the 'Delete' button.
(Inherited from GalleryManager.)
Default false.
|
HideRefreshButton
|
Bool. Gets or sets a value indicating whether to hide the 'Refresh' button.
(Inherited from GalleryManager.)
Default false.
|
HideUploadButton
|
Bool. Gets or sets a value indicating whether to hide the 'Upload' button.
(Inherited from GalleryManager.)
Default false.
|
ID
|
String. Gets or sets the programmatic identifier assigned to the server control.
(Inherited from Control.)
|
InvalidFileExtensionMessage
|
String overridable. Gets the text for an alert window when the user tries to upload a file with invalid extension.
(Inherited from GalleryManager.)
|
InvalidFileNameMessage
|
String overridable. Gets the text for an alert window when the user tries to create a folder with invalid name.
(Inherited from GalleryManager.)
|
ManagedFolders
|
String overridable. Gets or sets semicolon separated relative URL's of folders available for managing
- new folders creating, uploading and deleting files.
(Inherited from GalleryManager.)
Default "~/App_Obout/HTMLEditor/FlashGallery/users_flashs".
|
OboutTree
|
Obout.Ajax.UI.TreeView.Tree.
Gets the inner obout ASP.NET Tree control, null if
UseOboutTree
is set to false.
(Inherited from GalleryManager.)
About keyboard navigation in the obout Tree control see this page.
This class instance has the following properties set by default:
CssClass = "vista"
EnableKeyBoardSupport = true
EnableDragAndDrop = false (can not be changed)
EnableMultiNodeSelection = false (can not be changed)
EnableViewState = false (can not be changed)
EnableTheming = false (can not be changed)
LeafNodeStyle.NodeCSS = "internalLeafNodeCSS" (embedded CSS class)
OnNodeSelect = "OboutTree_SelectNode" (can not be changed)
Example:
<obout:PopupHolder runat="server" ID="popupHolder" >
<Demand>
<obout:FlashBrowser runat="server" UseOboutTree="true"
OboutTree-CssClass="default" />
</Demand>
</obout:PopupHolder>
|
RelativeUrl
|
Bool. Gets or sets a value indicating whether to create a ralative URL for selected file (image, document etc.).
If false then absolute URL will be generated.
(Inherited from GalleryManager.)
Default true (relative URL).
|
ShowPreviewPanel
|
Bool. Gets or sets a value indicating whether to show the preview panel in the popup.
(Inherited from GalleryManager.)
Default true.
|
TreeFeatures
|
TreeFeatures.
Gets an instance of the class with additional properties for the Tree control used in the Gallery Manger.
(Inherited from GalleryManager.)
Example:
<obout:PopupHolder runat="server" ID="popupHolder" >
<Demand>
<obout:FlashBrowser runat="server">
<TreeFeatures FolderImageUrl="~/treeview/icons/folder_old.gif" >
<LeafImages>
<obout:LeafImage Extensions="*" Url="~/treeview/icons/bfly.gif" />
</LeafImages>
</TreeFeatures>
</obout:FlashBrowser>
</Demand>
</obout:PopupHolder>
|
TreeView
|
System.Web.UI.WebControls.TreeView.
Gets the inner standard ASP.NET Tree control, null if
UseOboutTree
is set to true.
(Inherited from GalleryManager.)
This class instance has the following properties set by default:
LeafNodeStyle.ForeColor = "Blue"
NodeStyle.ForeColor = "Black"
NodeStyle.Font.Size = "11px"
NodeStyle.Font.Name = "verdana"
NodeStyle.NodeSpacing = "0px"
SelectedNodeStyle.BackColor = "Blue"
SelectedNodeStyle.ForeColor = "Yellow"
Example:
<obout:PopupHolder runat="server" ID="popupHolder" >
<Demand>
<obout:FlashBrowser runat="server" TreeView-Font-Bold="true"/>
</Demand>
</obout:PopupHolder>
|
UseOboutTree
|
Bool. Gets or set a value indicating whether to use the
obout ASP.NET Tree control
in the Gallery Manager.
If false then the
standard ASP.NET TreeView
is used.
(Inherited from GalleryManager.)
Default false.
Example:
<obout:PopupHolder runat="server" ID="popupHolder" >
<Demand>
<obout:FlashBrowser runat="server" UseOboutTree="true" />
</Demand>
</obout:PopupHolder>
|