|
Dialog Control Properties
|
| |
|
<%@ Register TagPrefix="owd" Namespace="OboutInc.Window" Assembly="obout_Window_NET" %>
Properties - Position And Size
Position
|
Gets or sets position option Optional
Allowed values are:
CUSTOM
SCREEN_CENTER
oDialog.Position=Positions.CUSTOM
|
Left
|
Gets or sets Left position of Dialog when Position property is set to CUSTOM. Optional
oDialog.Left=200;
|
Top
|
Gets or sets Top position of Dialog when Position property is set to CUSTOM. Optional
oDialog.Top=200;
|
Width
|
Gets or sets Width of Dialog. Optional
oDialog.Width=300;
|
Height
|
Gets or sets Height of Dialog. Optional
oDialog.Height=100;
|
|
|
|
|
Properties - Behaviours
VisibleOnLoad
|
Gets or sets whether Dialog will be open when page finishes loading Optional
oDialog.VisibleOnLoad = true;
|
IsModal
|
Gets or sets whether background will be blocked when Dialog appears. Optional
oDialog.IsModal = true;
|
IsDraggable
|
Gets or sets whether Dialog can be dragged. Optional
oDialog.IsDraggable = true;
|
|
|
|
|
Properties - Display
StyleFolder
|
Gets or sets folder that contains style for Dialog
oDialog.StyleFolder = "wdstyles/window/default";
|
zIndex
|
Gets or sets zIndex of Dialog. Optional
oDialog.zIndex = 10;
|
Opacity
|
Gets or sets opacity level of Dialog (0-100). Optional
oDialog.Opacity = 90;
|
|
|
|
|
Properties - Header Settings
Title
|
Gets or sets title of Dialog. Optional
oDialog.Title = "Hello world";
|
IconPath
|
Gets or sets path of icon in dialog header. Optional
oDialog.IconPath= "xp.gif";
|
ShowCloseButton
|
Gets or sets whether close button is shown. Optional
oDialog.ShowCloseButton= false;
|
|
|
|
|
Properties - Events
OnClientInit
|
Gets or sets javascript to be executed after dialog initiates Optional
oDialog.OnClientInit = "alert('Init done')";
|
OnClientPreOpen
|
Gets or sets javascript to be executed before dialog start opening Optional
oDialog.OnClientPreOpen= "alert('Start opening')";
|
OnClientOpen
|
Gets or sets javascript to be executed after dialog opens Optional
oDialog.OnClientOpen= "alert('Dialog has opened')";
|
OnClientClose
|
Gets or sets javascript to be executed after dialog closes Optional
oDialog.OnClientClose= "alert('Dialog has closed')";
|
|
|
|
|
| "We LOVE your components. They are awesome!" |
Greg Kirchdorfer |
| Internet Office, Inc. |
| |
|