I'm also using GWT 2.0.3, so seems quite strange to me that you're
seeing these issues.
I would try running your app with Firebug switched on and see what the
response is in the console.

Also, some questions:
Do you get the output in all browsers? (works in IE/Firefox/Chrome
i.e. it's only GWT that's not seeing it)
Is response.getStatusCode 200?

-R

On Mar 1, 2:11 pm, mibtar <[email protected]> wrote:
> i did try using GET too. but the same output.
> i checked your code and it seems i'm pretty much doing the same.
>
> this is really weird because i tried it using JSON:
>
>     $arr = array();
>     for($row = 0; $rowdata = mysql_fetch_array($result); $row++){
>         $sub_arr = array();
>         for($col = 0; $col < count($rowdata)/2; $col++){
>             $sub_arr[] = $rowdata[$col];
>         }
>         $arr[] = $sub_arr;
>     }
>     echo json_encode($arr);
>
> browser output is:
>
> [["1","abc","123"],["2","def","456"],["3","ghi","789"]]
>
> but getText() shows:
>
> []
>
> also empty.
> is this a bug? i'm using gwt 2.0.3.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to