Hi,
Can I do something like a custom property on my datasource definition?
where MyProp comes from the DS definition
There are no getAttributes functions on com.smartgwt.client.data.DataSource, except for getAttributeAsMap?
But also server side on com.isomorphic.datasource.DataSource there are no getAttribute or getProperty functions?
Can I do something like a custom property on my datasource definition?
Code:
DataSource ds = DataSource.getDataSource(name); String myprop = ds.getAttribute("MyProp");
Code:
<DataSource ID="biS" dropExtraFields="true" MyProp="abc">
There are no getAttributes functions on com.smartgwt.client.data.DataSource, except for getAttributeAsMap?
But also server side on com.isomorphic.datasource.DataSource there are no getAttribute or getProperty functions?
Comment