Thank you Jonathan.
Yout solution worked!.
Thanks.
Kanugula.
kanugula wrote:
>
> Experts,
>
> I am dangling my head to fix my 2nd IFrame issue.
>
> I have two tabs. One to serach and other to buy. My search tab works
> greate and fills the IFrame. When I click 2nd Tab, it fetched remote we
>
> Finally, it seems that your post is being seen as a reply to a previous,
> unrelated post (at least nabble understood it so - maybe it got
> confused?).
> If you have further doubts regarding translation support, I'd suggest
> creating a new thread.
It's nabble, because it looks fine in my g
On Fri, Apr 4, 2008 at 11:32 AM, Ralf Nieuwenhuijsen <
[EMAIL PROTECTED]> wrote:
> // reflexive for-loop
> foreach (key in someObj)
>alert (k + " is " + someObj[k])
>
Oops, small typo here. In case it wasn't obvious, that should be:
foreach (key in someObj)
alert(key + " is " + someOb
>From Python to Qooxdoo
1) the local object is called this. So you do "this.x" instead of @x
2) there is no layout sensitive syntax, you need to use braces
3) the syntax for creating classes is slightly different, see:
http://qooxdoo.org/documentation/0.7/class_declaration
4) you main iterators:
Thanks for your hint Hugh.
I've done it by using a workaround with the NativeWindow:
var hString = "";
for (var i = 0; i < this.columns[0].length; i++) {
hString += "&headers=" +this.columns[0][i];
}
var w1 = new qx.client.NativeWindow("/qooxdooBackend/.sylk?hql=" +this.hql
+hString);
w1.
> The response is type of "application/vnd.ms-excel" and normally the
> browser should ask the user if he would save or open the response. I
> don't know how to implement this in a qooxdoo application maybe
> someone could help here.
You could do window.location=url to override the main window, o
Hi all,
I send a remote request (qx.io.remote.Request) to a Java-Servlet. The
Servlet works fine, all parameters pass and as I can see in Firebug, the
response is correct.
The Servlet create an Excel-sheet with given headers and a
Hibernate-query.
The response is type of "application/vnd.ms-excel
Hello Kanugula!
The problem is the way you set reference to the "this" in addEventListener:
// make qx.ui.embed.Iframe react to event "surfTo" via function changeURL()
this.addEventListener(
"surfTo",
changeURL,
mainTabView.getBar().getManager().getSelected().getLabel() == "Search" ?
se