Using 3.0.
In com.smartgwt.client.rpc.RPCResponse, the constants for statuses are not really constants because they are not final.
Due to this, it's not possible to use them in a switch statement like below:
In com.smartgwt.client.rpc.RPCResponse, the constants for statuses are not really constants because they are not final.
Due to this, it's not possible to use them in a switch statement like below:
Code:
switch (status) { case RPCResponse.STATUS_SUCCESS: ... }