For once again I found the answer to my own question! Maybe you guys hire me to populate the form with self-made questions and answers! :D
It is invalidateCache():
Thanks a lot
It is invalidateCache():
Code:
public void reloadCalendarData() { // on current view
invalidateCache();
fetchData(getFetchCriteria(), new DSCallback() {
@Override
public void execute(DSResponse response, Object rawData, DSRequest request) {
setData(response.getData());
}
});
}
Comment