hmm still not getting it to work. the size is updating just fine, but
the image is not.
this is my onSuccess method in my callback. renderedText is my Image
widget.
public void onSuccess(String result) {
String[] parsedString = result.split("&");
String urlString = parsedString[0];
String widthString = parsedString[1];
String heightString = parsedString[2];
renderedText.setUrl(urlString);
renderedText.setSize(widthString+"px", heightString+"px");
}
On Jul 30, 5:28 pm, "rudolf michael" <
roud...@gmail.com> wrote:
> the servlet response is a text/plain, so i just appended to the response the
> width and height with some special characters to seperate them.
> for example my servlet response is images/resized.jpg@width@height and on
> the client side, i am parsing the string to an array to get the values so i
> can set them.
>