The page is used to define which columns are displayed in the data view, the order the fields are displayed, and to set various display options.
Users will be able to sort by clicking column heading. Multiple column can be sorted by using the CTRL key
Note 1
A Data View can display a file for download. The file can be stored in the file system or in the DB in a binary field
The files in a database approach does require that the FileContent value is not NULL. As it is very possible that a report row will not have a corresponding report to download, use the following SQ. Setting FileContent to 0 when the database value is NULL allows the report to execute without errors.
isnull(t1.FileName, 'No File') as [FileName], isnull(t1.FileContent,0) as [FileContent]
In both cases, keep in mind that any user that has access to the report can download any file listed in the report. If certain files should be available to certain group(s) of users, different reports may be needed.
Video regarding files and Data Views
Highlights are a simple visual cue presented when the data matches the defined conditions. Highlighs can be configured for any numeric value in a Versago Data View.
It is possible to calculate values at the time a report is executed and present them as a new column. This is done using the [Derived Field]button at the bottom of the page.
The following image formats are supported.
Each image must be provided in four (4) sizes.
Images are held in the folder C:\Program Files(x86)\TWBS\Versago\WebApp\SiteImages.
Video regarding images and Data Views