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