DataProvider
The silk:DataProvider component is use to extract data from a database. A DataProvider interfaces with a Data Outlet which is linked to an Object Relational Mapping (ORM) file which defines the data interaction. The DataProvider is also the repository of the information loaded from the database. The stored data can be access by other components.
Tag Use
Used standalone:
Used as a container:
Properties
*Required property.
id*
Unique component identifier. Default Value: Empty.
servicePath
The path of the service providing the access to the data. Default Value: Empty.
selectName
The name of the Select tag in the ORM file to be used to load the data from the server. This is only necessary if the ORM file has multiple Select tags. Default Value: Empty.
autoLoad
if true the component will load the data from the server after being initialized. If false the loading method will be trigger externally. The default value is true. Default Value: true.
loadingOrder
A numeric value which is used to order the loading process off multiple DataProviders when the application starts. This does not affect loading programmatically triggered. Default Value: 000.
treeData
If true it activates the support for hierarchical information or trees nodes. This requires the fields root, parent, and level in the tags column in theORM file. Default Value: false.
markDeleted
If true the delete action will change to update the field making the records as deleted. The records will be visually removed from the list. Default Value: false.
debugLevel
A numeric value indicating the level of debugging to be displayed. Default Value: 0.
isPublic
If true the data will be served from a public servicePath service. This is only necessary when a private application is going to use a public service. Default Value: false.
pkColumn
The name of the columns used as primary key if the DataProvider has been created using static JSON data. Default Value: Empty.
detailDP
The DataProvider which will be loaded when clicking on an associated silk:Table row. Default Value: Empty.
recordSync
If true if will load a ORM select containing extra columns for the selected record. This will trigger a second click event in the connected component after the synchronization process completed. Default Value: Empty.
dpSort
Determines if the sorting process will run in the database. This does not work if the dataProvider is set to treeData="true". Default Value: Empty.
timeout
Set the time the Ajax request will timeout if it does not receives an asnwer. Default Value: Empty.
JSON container
The silk:DataProvider can also be used with pre-define data. In this case the DataProvider will host an array of JSON objects which will be loaded during the initialization process. In this scenario the DataProvider will not interact with the server, so the servicePath property is not necessary. The typical use for this scenario is to store data which is only valid in the application domain.
Last updated