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

Structure of section:

Common properties of dialogs:

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).

Additional properties of filePropDlg dialog:

Property name Type Description
gridHeaderFontName String The name of the font for text in the file properties grid header.
gridHeaderFontSize uint The size of the font for text in the file properties grid header.
gridHeaderFontColor uint The color of the text in file properties grid header (#RRGGBB).
gridCellFontName String The name of the font for text in the grid cell.
gridCellFontSize uint The size of the font for text in the grid cell.
nonEditPropertyFontColor uint The color of the text in file properties grid cell for not editable property (#RRGGBB).
editPropertyFontColor uint The color of the text in file properties grid cell for editable property (#RRGGBB).
gridHeaderColor Array An array of RGB hexadecimal color values to be used in the gradient for the grid header.
gridHeaderBorderColor Array An array of RGB hexadecimal color values to be used in the gradient for the border of the grid header.
nonEditPropertyBorderColor Array An array of RGB hexadecimal color values to be used in the gradient for the cell border of not editable property.
nonEditPropertyRowColor Array An array of RGB hexadecimal color values to be used in the gradient for the cell background of not editable property.
editPropertyBorderColor Array An array of RGB hexadecimal color values to be used in the gradient for the cell border of editable property.
editPropertyRowColor Array An array of RGB hexadecimal color values to be used in the gradient for the cell background of editable property.

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 filePropDlg.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";



filePropDlg

Description:

Displays retry dialog when error occur during upload process.

List of default values:
Property name Default value
backgroundColor [#efefef]
borderColor [#848284]
captionText "File(s) properties"
captionColor [#e7ebe7, #cec3ce]
captionFontName "_sans"
captionFontSize 11
captionFontBold true
captionFontItalic false
captionFontUnderline false
captionFontColor #000000
gridHeaderFontName "_sans"
gridHeaderFontSize 12
gridHeaderFontColor #000000
gridCellFontName "_sans"
gridCellFontSize 12
nonEditPropertyFontColor #000000
editPropertyFontColor #000000
gridHeaderColor [#fdfdfe, #bcc8cf]
gridHeaderBorderColor [#bfced4]
nonEditPropertyBorderColor [#e4e4e4]
nonEditPropertyRowColor [#cccccc]
editPropertyBorderColor [#e4e4e4]
editPropertyRowColor [#ffffff]


Description of appropriate property you can find here Common properties of dialogs and Properties of filePropDlg dialog.

Examples:

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

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

The file properties 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 filePropDlg.okButton is assigned via flashvars object of SWFObject on the html page:
flashvars["view.filePropDlg.okButton.label"] = "Ok";