Upgrading to SmartClient Version: v9.0p_2013-08-30/Enterprise Deployment (built 2013-08-30) using IE9.
Previous version, 2013-07-12, I was able to extend a DataSource and be able to wrap more features/abilities into the a data source, but now when I do this the extended data source does not have the reference data source information. The fields are missing - should this be possible?
In my constructure I was calling super(ds.getJsObj()) to be able to extends an existing datasource.
Previous version, 2013-07-12, I was able to extend a DataSource and be able to wrap more features/abilities into the a data source, but now when I do this the extended data source does not have the reference data source information. The fields are missing - should this be possible?
In my constructure I was calling super(ds.getJsObj()) to be able to extends an existing datasource.
Code:
public ExtendedDataSource(DataSource ds)
{
super(ds.getJsObj());
}