Hello All,
I am trying to build an app using smartgwt mobile.
All are going well and your mobile version is so good. Only problem I am facing is not sure how to remove "Contacting server..." message.
	Alert message "Response returned " comes correctly. But "Contacting Server..." message is appearing when ever server call happens, even though i have setShowPrompt as false, and i doesnt want that to happen.
Please suggest me what I need to change.
Regards
Karthik
					I am trying to build an app using smartgwt mobile.
All are going well and your mobile version is so good. Only problem I am facing is not sure how to remove "Contacting server..." message.
Code:
	
	DataSource dataSource = new DataSource();
dataSource.setDataURL("<<my external url to pull data>>");
dataSource.setShowPrompt(false);
DSRequest reqProperties=new DSRequest();
reqProperties.setShowPrompt(false);
dataSource.fetchData(null, new DSCallback() {
public void execute(DSResponse response, Object rawData, DSRequest request) {
  SC.say("Response returned....");
 }
},reqProperties);
Please suggest me what I need to change.
Regards
Karthik
