I would like to request the adoption of RX/JS Observable as a data format input to jqxDataAdapter. Would also include rebinding of data when observation changes.
Data Source Definition (example):
Accounts$: Observable<Account[]>; <=== RX/JS observable
localdata: this.accounts$, <=== Would be the name of local variable
datatype: ‘rxjsObserableArray‘, <=== Would designate RX/JS observable Array data source.
datafields: [
{name: ‘AcctName’, type: ‘string’},
{name: ‘AcctCategory’, type: ‘string’},
{name: ‘AcctType’, type: ‘string’},
{name: ‘AcctNumber’, type: ‘string’},
{name: ‘AcctOpenDate’, type: ‘date’},
{name: ‘AcctDescription’, type: ‘string’},
{name: ‘AcctBalance’, type: ‘number’},
{name: ‘AcctStatus’, type: ‘bool’}
],
id: ‘_id’,
Thanks,
Gary