hi ulrich,

this is not working, the problem is that the QxConst.EVENT_TYPE_APPEAR is fired right after the "changeSelected" event of the tabBar, so the Statuswindow is displayed and deleted so fast that you cant even see it appear. Is there another event, like one that gets fired after the object has been displayed and not shortly before it is beeing displayed?

tia
patrick

PS:  in which sourcefile do I have to look for these events?

Ulrich Schreiner schrieb:

hi,

one possible event is "QxConst.EVENT_TYPE_APPEAR", this works for every widget. it is fired, when the widget is about to appear.

another solution: show your popup, store the reference to this popup in your client (global variable?) and after your data was loaded from the server, hide the popup

the first one works only if your tabPane is added to the clientdocument. if it is already visible and you only load new data you have to code the second idea

</usc>

Patrick W. Fraley wrote:

Hi Ulrich,

thanks that is exactly the event I needed to display my status window. Now which event is fired when the tabPane has been dsiplayed, so I can hide the status window again?

patrick

Ulrich Schreiner schrieb:

if "tv" is your QxTabView:

tv.
  getBar().
    getManager().addEventListener ("changeSelected", function (e) {
    })

inside the eventhandler you can call "e.getData()" to get the QxTabViewButton which was clicked.


Patrick W. Fraley wrote:

Ok Seems like the picture got stripped. So here again this time as an attachement ;)


Patrick W. Fraley schrieb:

Hi All,

I have created a small application which consists of a window ( see attached pic ). On the left of the window one can select a market, which will then display on the right the contained brands.

Now since there are more than 20000 brands I do not load all of them at startup, so on the first click on a market I load a script which creates 3 new lists and adds them to the tabPanes and then sets the display to true. Now the problem is that the user has to move the mouse or press a key in order for the list to be displayed.

Now once the list has been loaded it seems that the display of the list works just fine ( without user interaction ).

Another question I have is what event gets fired when the tab is clicked ( it does not seem to be execute )? And is there also an event fired when the tabPane has been displayed? The reason I ask is that switching between tabPanes can take up to 5 seconds and during that time I would like to display a small status window to tell the user to be patient? Is that possible?

Tia
Patrick






------------------------------------------------------------------------



-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends applications into web and mobile media. Attend the live webcast and join the prime developer group breaking into this new coding territory! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
Qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel






-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends applications into web and mobile media. Attend the live webcast and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
Qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel



--
***************************************
COMsulting Gerhard Faehling GmbH
Patrick W. Fraley
Oeverdieker Weg 6
23669 Timmendorfer Strand
Tel: 04503 / 7033-25
Fax: 04503 / 7033-13
E-Mail: [EMAIL PROTECTED]
Internet: www.comsulting.de
***************************************




-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
Qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to