Data export
Exports data from a table, repeating layout, or list of complex objects to a .xlsx or .csv file format.
Appearance
| Color style: | The color style for this view. {Default | Primary | Info | Success | Warning | Danger | Dark} |
ButtonColorStyle |
| Shape style: | Rounded, flat or square (default) view shape. {Default | Rounded | Flat} |
ButtonShapeStyle |
| Size: | Size-based styling for this view (default, large, small, extra-small) {Default | Large | Small | Extra-Small} |
ButtonSizeStyle |
| Outline only: | Shows the color-based style of the view only when it is hovered over. | Boolean |
| Icon: | Icon name, for example: calendar, clock-o, camera, cloud-upload, bell, info, file-text, etc... Check http://fontawesome.io/icons for a comprehensive list. (Note that the "fa-" prefix is optional) | String |
| Width: | The width in px, % or em.\r\nFor example\: 50px, 20%, 0.4em. If no unit is specified, px is assumed. | String |
Behavior
| Target view: | Relative path to the table or repeating layout used to populate output file. Overridden if this view is bound to data. | String |
| Export file type: | File type to export to {Microsoft Excel 2007+ file type xlsx | Comma Separated Values file type csv} |
ExcelFileType |
| Default file name: | Default name for file. Users will be able to change this when saving. | String |
| Include column headers: | If the view is bound to a table, and the Column headers property is empty, the column headers of the bound table are included. If the view is bound to data, the settings in the Column headers property are used as the column headers. | Boolean |
| Tab index: | The tabbing sequence index of the form view. Indices start at 1, and can be set sparsely. For example, you can use 1, 5, 10. | Integer |
| Include hidden columns: | Include all columns, regardless of visibility status. By default, columns which are not visible will not be included in output file. When the view is populated by bound data, all columns will be included | Boolean |
| Column formatting: | Specific config options for exported columns. For more details on formatting strings, visit the following (hyperlinks in documentation)\: https\://support.office.com/en-us/article/Create-or-delete-a-custom-number-format-78f2a361-936b-4c03-8772-09fab54be7f4 | ColumnSpec[] |
| Column headers: | The headers of the exported columns. Requires the Include column headers property to be selected. If the view is bound to a table, these headers are used instead of the table column headers. | String[] |
| Column order: | The column displaying order in the exported file. This option works only when the view is bound to data. The specified values must match the bound data parameters. | String[] |
| Events | ||||||||||||||
| On Load: |
| |||||||||||||
| On Click: |
| |||||||||||||
| On Cell Export: |
| |||||||||||||
Extends:
Methods:
Inherited
addClass(name, [replaced])
Add or replace the CSS classes for this view.
| Name | Type | Default | Description |
| name | {string} | The CSS class names to add to the view. For multiple classes, use space to separate the class names. | |
| replaced | {string} | The CSS class names to be replaced by the first argument. For multiple classes, use space to separate the class names. |
Example
| Button.addClass("green"); |
click()
Programmatically click the export button
exportFile([targetPath], [format])
Exports a spreadsheet file
| Name | Type | Default | Description |
| targetPath | {?(string|object)} | Either path to target control or control view reference. If null or missing, will default to control returned by {@link DataExport#getTargetControl}. | |
| format | {?string} | File format to output to. Acceptable values incluse 'xlsx' and 'csv'. If null or missing, will default to format returned by {@link DataExport#getFileType}. |
Examples
| ${DataExport1}.exportFile() // exports a spreadsheet using currently set parameters for target control and file format |
| ${DataExport1}.exportFile(${Table3}) // exports spreadsheet using data from Table3 |
| ${DataExport1}.exportFile(${Table3}, 'csv') // exports spreadsheet using data from Table3 in csv format, regardless of any other settings |
focus()
Set focus on this control
getColorStyle()
Returns:
{string}
Gets color style of export button. NOTE: This always returns the color as set, to avoid ambiguity always set the color using "D"|"P"|"I"|"S"|"W"|"E"
getColumnFormats()
Returns:
{string[]}
Gets current column formats. See {@link https://support.office.com/en-us/article/Create-or-delete-a-custom-number-format-78f2a361-936b-4c03-8772-09fab54be7f4|Create or delete a custom number format} for more information on creating formatting srings.
getColumnHeaders()
Returns:
{string[]}
Gets the column headers.
getFileName()
Returns:
{string}
Get the default output file name. Users will be able to change file name when saving.
getFileType()
Returns:
{string}
Gets the currently set output format
getHelpText()
Returns:
{string}
Get help text for export button
getShapeStyle()
Returns:
{string}
Gets shape style of export button. NOTE: This always returns the shape style as set, to avoid ambiguity always set the shape style using "D"|"R"|"F"
getSizeStyle()
Returns:
{string}
Gets size style of export button. NOTE: This always returns the size style as set, to avoid ambiguity always set the size style using "D"|"S"|"L"|"X"
getTabIndex()
Returns:
{integer}
Get tab index for DataExport control
getTargetControl()
Returns:
{string}
Gets the name of the control that is being used to populate spreadsheets
getText()
Returns:
{string}
Get text of export button
getType()
Returns:
{string}
Get descriptive string representing the type of control
getWidth()
Returns:
{string}
Get configured width for export button (including unit)
Inherited
hide(collapseFlag)
Hide the view.
| Name | Type | Default | Description |
| collapseFlag | {boolean} | Set to true to collapse the view (equivalent to a view setting of "NONE") |
Example
| MyView.hide(); |
Inherited
isBound()
Returns:
{boolean}
Indicate the bound status of the view.
isColumnNamesIncluded()
Returns:
{boolean}
Returns whether or not column names are included in output file
Inherited
isEnabled()
Returns:
{boolean}
Check whether the view is enabled.
Example
| var enabled = MyView.isEnabled(); |
isInvisibleColumnsIncluded()
Returns:
{boolean}
Returns whether or not output file will contain hidden columns/fields
Inherited
isLabelVisible()
Returns:
{boolean}
Check whether the view label is visible.
Example
| var labelVisible = MyView.isLabelVisible(); |
Inherited
isVisible()
Returns:
{boolean}
Check whether the view is visible.
Example
| var visible = MyView.isVisible(); |
Inherited
propagateUpValueChange(event)
Returns:
{boolean}
Propagate the value change of the view up through the parent views.
| Name | Type | Default | Description |
| event | {Event} | Value change event (usually an onchange event) |
Example
| MyView.propagateUp(event); |
setColorStyle(style)
Sets color style of export button. NOTE: to avoid ambiguity always set the color using "D"|"P"|"I"|"S"|"W"|"E"
| Name | Type | Default | Description |
| style | {string} | "DEFAULT"|"DEF"|"D"=Default | "PRIMARY"|"PRI"|"P"=Primary | "INFO"|INF"|"I"=Info | "SUCCESS"|"S"=Success | "WARNING"|"WARN"|"W"=Warning | "DANGER"|ERROR|ERR"|"E"|"G"=Danger |
setColumnFormats(value, index)
Set column formatting for one or more columns. Formatting strings must conform to Microsoft Excel standards. See {@link https://support.office.com/en-us/article/Create-or-delete-a-custom-number-format-78f2a361-936b-4c03-8772-09fab54be7f4|Create or delete a custom number format} for more information on creating formatting srings.
| Name | Type | Default | Description |
| value | {(string|string[])} | Value to set format to. If value is a string, idx is required. If value is an array of strings, then a matching array of indexes may or may not be specified. If an array is specified, then each string in value will be mapped to the corresponding index in index. Otherwise, string array will replace current column formats | |
| index | {(integer|integer[])} | Index to set format at. If value is an array of strings, an array of indexes may be specified, which will map each format to the corresponding index. |
Examples
| ${DataExport1}.setColumnFormats("$#", 1) // sets the 2nd column (index 1) to use "$#" as it's formatting string |
| ${DataExport1}.setColumnFormats(["$#","#,##0.00","#%"], [1,3,5]) // sets the 2nd, 4th, and 6th columns (indices 1, 3, and 5) to use "$#", "#,##0.00", and "#%" as their formatting strings, respectively |
| ${DataExport1}.setColumnFormats(["$#","#,##0.00","#%"]) // sets the formatting for the 1st, 2nd, and 3rd columns to use "$#", "#,##0.00", and "#%" as their formatting strings, respectively |
setColumnHeaders(headers)
Set column headers.
| Name | Type | Default | Description |
| headers | {string[]} | List of column headers |
Example
| ${DataExport1}.setColumnHeaders(["ID","Name","Role","DOB"]) // sets the labels for the column headers to "ID", "Name", "Role", and "DOB" |
setColumnNamesIncluded(flag)
Set whether or not column names should be included in output file. Note: This has no effect when the control is bound to data.
| Name | Type | Default | Description |
| flag | {boolean} | Set to true to include column headers in output file, false to leave them out |
Inherited
setEnabled(enabled, required)
Enable or disable the view.
| Name | Type | Default | Description |
| enabled | {boolean} | Enabled/read-only flag (true to enable view, false to disable/make read-only) | |
| required | {boolean} | Enable or disable the required field flag for the view. |
Example
| MyView.setEnabled(false); //Make MyView read-only |
setFileName(name)
Set the default file name output file should have. Users will be able to change file name when saving.
| Name | Type | Default | Description |
| name | {string} | Default name output file should have. Users will be able to change file name at save time. |
setFileType(type)
Set the file format to output to
| Name | Type | Default | Description |
| type | {string} | File format to output. Acceptable values include 'xlsx' and 'csv'. |
setHelpText(text)
Set help text for export button
| Name | Type | Default | Description |
| text | {string} | Rollover text to be set |
setIcon(icon)
Sets icon to display on the export button
| Name | Type | Default | Description |
| icon | {string} | See {@link http://fontawesome.io/icons Font Awesome} for a comprehensive list of icons. Refer to the knowledge center for the latest Font Awesome version. |
setInvisibleColumnsIncluded(flag)
Set whether or not hidden columns/fields should be included in output file
| Name | Type | Default | Description |
| flag | {boolean} | Set to true to include hidden columns/fields in output file, false to leave them out |
Inherited
setLabelVisible(visible)
Show or hide the view label.
| Name | Type | Default | Description |
| visible | {boolean} | Label visibility flag (true to show view label, false to hide) |
Example
| MyView.setLabelVisible(false); |
setOutline(outline)
Sets outline style of export button
| Name | Type | Default | Description |
| outline | {boolean} | {true | false} |
setShapeStyle(style)
Sets shape style of export button. NOTE: to avoid ambiguity always set the shape style using "D"|"R"|"F"
| Name | Type | Default | Description |
| style | {string} | "Default"|"D"=Default | "ROUNDED"|ROUND"|"R"=Rounded | "FLAT"|"F"=Flat |
setSizeStyle(style)
Sets size style of export button. NOTE: to avoid ambiguity always set the size style using "D"|"S"|"L"|"X"
| Name | Type | Default | Description |
| style | {string} | "DEFAULT"|"DEF"|"NORMAL"|"D"=Default | "SMALL"|"S"=Small | "LARGE"|"L"=Large | "EXTRA-SMALL"|"X-SMALL"|"XS"|"X"=X-small |
setTabIndex(tabIndex)
Sets tab index of DataExport control
| Name | Type | Default | Description |
| tabIndex | {integer} | Tab indices start at 1 and may be set sparsely |
setTargetControl(control)
Set the control to use for populating spreadsheets
| Name | Type | Default | Description |
| control | {(string|object)} | Either the name of the control to use, or a view reference to the control to use |
Examples
| ${DataExport1}.setTargetControl("Table3") // sets the target control to Table3 |
| ${DataExport1}.setTargetControl(${Table3}) // another way to set the target to Table3, this time passing Table3 itself |
setText(text)
Set text of export button
| Name | Type | Default | Description |
| text | {string} | Text to be set on the export button |
Inherited
setViewData(data, createPseudoBinding)
Set or update the bound data associated with the view. It applies only to views with bound data.
Note: It should only be used with simple type bindings, or complex type bindings with simple type properties.
It should not be used with bindings that have properties that are lists or compext types. For complex types, set the bindings by using
the
Note: It should only be used with simple type bindings, or complex type bindings with simple type properties.
It should not be used with bindings that have properties that are lists or compext types. For complex types, set the bindings by using
the
binding.set pattern, as described in the Binding data and configuration options documentation section.| Name | Type | Default | Description |
| data | {Object} | The value of the bound data. The parameter type must match the type of the bound data. | |
| createPseudoBinding | {boolean} | If the value is set to true, the parameter creates a pseudo binding if there is no current binding. |
Example
| MyView.setViewData("TEST"); //Updates bound data to the string 'TEST' |
Inherited
setVisible(visible, collapse)
Show or hide the view.
| Name | Type | Default | Description |
| visible | {boolean} | Visibility flag (true to show the view, false to hide it) | |
| collapse | {boolean} | Set it to true to collapse the view space when the option visible is set to false. |
Examples
| MyView.setVisible(false, false); //Equivalent to MyView.hide() |
| MyView.setVisible(false, true); // Sets visibility to "None" |
setWidth(width)
Set width of export button (e.g. 50px, 20%, 2em - omitting the unit assumes px)
| Name | Type | Default | Description |
| width | {string} | DataExport width |
Inherited
show()
Show this view.
Example
| MyView.show(); |
Inherited
triggerFormulaUpdates([phase])
Broadcast the expression trigger for the specified view.
| Name | Type | Default | Description |
| phase | {int} | bpmext.ui.PHASE_NORMAL | The phase we are currently in |
Example
| MyView.triggerFormulaUpdates(); |