The TableView user interface has a number of user dialogs. This section desribes properties and objects of the dialogs.

Structure of section:

Properties of dialog object:

Property name Type Description
backgroundColor Array An array of RGB hexadecimal color values to be used in the gradient for the background.
borderColor Array An array of RGB hexadecimal color values to be used in the gradient for the border of the dialog.
captionText string Gets or sets caption text o the dialog
captionColor Array An array of RGB hexadecimal color values to be used in the gradient for the dialog header.
captionFontName Boolean The name of the font for text in the dialog header.
captionFontSize uint The size of the font for text in the dialog header.
captionFontBold Boolean Boolean value that indicates that the caption font is boldface.
captionFontItalic Boolean Boolean value that indicates that the caption font is italicized.
captionFontUnderline Boolean Boolean value that indicates that the caption font is underlined.
captionFontColor uint The color of the text in dialog header (#RRGGBB).

alertDlg

Description:

Displays various alert and error messages.

List of default values:
Property name Default value
backgroundColor [#efefef]
borderColor [#848284]
captionText The value is the same as an alert message.
captionColor [#e7ebe7, #cec3ce]
captionFontName "_sans"
captionFontSize 11
captionFontBold true
captionFontItalic false
captionFontUnderline false
captionFontColor #000000


Description of appropriate property you can find here Common properties of dialogs.


Examples:

The property of the alertDlg is assigned via flashvars object of SWFObject on the html page:

flashvars["view.alertDlg.backgroundColor"] = "#fdfdfe|#d7e0e7";

The falert dialog has two button objects. Description of these objects you can find here button object. The default values are the same except the following: The buttonsStyle object is also supported.

The property of the alertDlg.okButton is assigned via flashvars object of SWFObject on the html page:
flashvars["view.alertDlg.okButton.label"] = "Ok";



retryDlg

Description:

Displays retry dialog when error occur during upload process.

List of default values:
Property name Default value
backgroundColor [#efefef]
borderColor [#848284]
captionText "Retry file upload?"
captionColor [#e7ebe7, #cec3ce]
captionFontName "_sans"
captionFontSize 11
captionFontBold true
captionFontItalic false
captionFontUnderline false
captionFontColor #000000


Description of appropriate property you can find here Common properties of dialogs.


Examples:

The property of the retryDlg is assigned via flashvars object of SWFObject on the html page:

flashvars["view.retryDlg.backgroundColor"] = "#fdfdfe|#d7e0e7";

The retry dialog has three button objects. Description of these objects you can find here button object: retryButton, cancelButton, skipButton. The default values are the same except the following: The buttonsStyle object is also supported.

The property of the retryDlg.okButton is assigned via flashvars object of SWFObject on the html page:
flashvars["view.retryDlg.retryButton.label"] = "Ok";