Is there a way to return back additional data back to the client in DSResponse when invoking custom operation implemented by a server object?
One use case I have exports data as a temporary file via a custom export operation. Upon success, I'd like to return the absolute path to the temporary file back to the client as part of DSResponse, so the information can be displayed to the user.
I tried to do this by setting the DataSource properties on the server side. However, there is no corresponding getProperty method on the client side, and getAttribute() does not return the property value set on the server side.
Are server properteis == client attributes? Are there restrictions on what properties / attributes can be set?
Version: SmartGWT-ee 3.0
One use case I have exports data as a temporary file via a custom export operation. Upon success, I'd like to return the absolute path to the temporary file back to the client as part of DSResponse, so the information can be displayed to the user.
I tried to do this by setting the DataSource properties on the server side. However, there is no corresponding getProperty method on the client side, and getAttribute() does not return the property value set on the server side.
Are server properteis == client attributes? Are there restrictions on what properties / attributes can be set?
Version: SmartGWT-ee 3.0
Comment