Using
smartgwtpro-3.0p
customds
I try to retrieve data from a customds using a call to fetchData:
In dev mode this works, but when I compile the gwt the "username" attribute contains a linkedMap.
result (in eclipse):
{userName={0=N, 1=I, 2=S, 3=1, 4=3, 5=0, 6=7, 7=1, cM={1=1, 317=1, 320=1, 323=1}}}
How can i pass a filter criteria to a datasource fetchData call?
smartgwtpro-3.0p
customds
I try to retrieve data from a customds using a call to fetchData:
Code:
final DataSource ds = DealerUploadDS.getInstance(); ds.fetchData(new Criteria("userName", userName), new DSCallback() {
Code:
dsRequest.getCriteria().get("userName").toString()
{userName={0=N, 1=I, 2=S, 3=1, 4=3, 5=0, 6=7, 7=1, cM={1=1, 317=1, 320=1, 323=1}}}
How can i pass a filter criteria to a datasource fetchData call?
Comment