[qooxdoo-devel] Iframe getSource doesn't work

2008-06-16 Thread jhonny thio
Hi.. I want to make a browser application using qooxdoo, maybe like Opera or modzilla. Here some of my question : 1. To handle the content of the website, I use qx.ui.embed.Iframe(). This is right ? Or maybe there is another widget that better ? 2. If I use Iframe, I use Iframe.getSource(

[qooxdoo-devel] Static method in property init

2008-06-16 Thread kanugula
Hi, Why is this not working? qx.Class.define("myGui", { extend : myAbstractGui, properties : { rpcUrl : { init : my.ServerConfig.getServiceUrl()+"?request=delete&system=mySystem", nullable : false } },

Re: [qooxdoo-devel] Anyone needs switching locales and themes at runtime?

2008-06-16 Thread Sebastian Werner
Am 16.06.2008 um 22:48 schrieb Hugh Gibson: >>> Right, we'd have to keep the "tr", "trn", .. calls and most of >> the infrastructure anyway. I'll give your approach a try. Maybe we >>> could externalize locale switching support into a mixin and make >>> optional this way. I will do some prototypi

Re: [qooxdoo-devel] Anyone needs switching locales and themes at runtime?

2008-06-16 Thread Hugh Gibson
> > Right, we'd have to keep the "tr", "trn", .. calls and most of > the infrastructure anyway. I'll give your approach a try. Maybe we > > could externalize locale switching support into a mixin and make > > optional this way. I will do some prototyping with this approach. > > > On a second

Re: [qooxdoo-devel] Problem in IFrame

2008-06-16 Thread Alexander Back
Hi Jhonny, jhonny thio wrote: > so far, I only try this for yahoo... > But in friendster, i can't login... > After I type email and password and press Login Button, nothing happen.. > The page doesn't go to the My home friendster, but still in Index.php (in > page where we type email and pass) .

Re: [qooxdoo-devel] Anyone needs switching locales and themes at runtime?

2008-06-16 Thread Fabian Jakobs
Fabian Jakobs schrieb: > Hugh Gibson schrieb: > >>> Just for curiosity, could you roughly explain what this connection >>> between the widgets and associated theme entries is needed for? If >>> the widgets use it to listen for theme changes, wouldn't it also be >>> possible to re-layout everyt

Re: [qooxdoo-devel] Layouts in an inline widget possible?

2008-06-16 Thread Kristjan Cočev
Yes it does. Thanks for your really swift reply! As an aside: I have never recieved such good response time in any open source product! Bravo and keep on the good work, guys!! Kris On 16.6.2008, at 11:39, Alexander Back wrote: > Hi Kristjan, > > qx.ui.basic.Inline itself is a CanvasLayout (it d

Re: [qooxdoo-devel] IE6 memory management: try...catch...finally

2008-06-16 Thread Fabian Jakobs
Hi Mike, > This article was recently featured on Ajaxian.com: > http://www.hedgerwow.com/360/dhtml/ie6_memory_leak_fix/ > > I am wondering if this could be included into Qooxdoo, possibly as a Mixin > to a high-level component, so as to provide the advertised benefit to those > of use who must stil

Re: [qooxdoo-devel] error with mailinglist

2008-06-16 Thread Andreas Ecker
Hi, thanks for reporting. I have just disabled this user (mailbox over quota), so the problem should be gone. Bye, Andreas > hi, > > > > every time I send an email to the mailingList i get a reply: > [EMAIL PROTECTED] > > > > Content: > > > > Hi. This is the deliver program at zju.e

Re: [qooxdoo-devel] error with mailinglist

2008-06-16 Thread Erich Konicek
hi, I've got the same reply too, marked as SPAM. Tobias Koller (GERMO GmbH) schrieb: > > hi, > > > > every time I send an email to the mailingList i get a reply: > [EMAIL PROTECTED] . > > > > Content: > > > > Hi. This is the deliver program at zju.edu.cn. > I'm afr

Re: [qooxdoo-devel] Problem in IFrame

2008-06-16 Thread Alexander Back
Hi Jhonny, jhonny thio wrote: > For the content of the webpage, I use Iframe.. > But i have problem, If I open yahoo.com with my qooxdoo application, and then > open it's Mail (Yahoo Mail), my real browser (browser that I use for open > Qooxdoo) also > move to yahoomail.com. So my real browser g

Re: [qooxdoo-devel] Anyone needs switching locales and themes at runtime?

2008-06-16 Thread Ralf Sternberg
Hi Fabian, Fabian Jakobs wrote: > I'll give you a small example. Take the "backgroundColor" property. You > can define a symbolic color in a theme - lets call it "focus". If you > set the background color using: > > this.setBackgroundColor("focus"); > > Three things happen: > > 1. check wheth

Re: [qooxdoo-devel] Layouts in an inline widget possible?

2008-06-16 Thread Alexander Back
Hi Kristjan, qx.ui.basic.Inline itself is a CanvasLayout (it directly inherits from this class). So you can use the methods of the CanvasLayout class to position your inline widget. Did this answer your question? cheers, Alex Kristjan Cočev wrote: > Hi, > I am using the qx.ui.basic.Inline

Re: [qooxdoo-devel] Problem in TextArea (on Line breaks)

2008-06-16 Thread Alexander Back
Hi Jhonny, I guess you have to encode your string before you pass it to your php script. --snip-- // instead of // url=url + "?myText="+ myText; // try this url=url + "?myText="+ encodeURI(myText); cheers, Alex jhonny thio wrote: > hi, my name is Jhonny. > > I have a window that contain

Re: [qooxdoo-devel] event control in listview

2008-06-16 Thread Dioc
Using of qx.ui.listview.ListView is deprecated. qx.ui.table.Table should be used instead. There is selection manager for ListView that can be accessed by the following way: listView.getPane().getManager() Selection manager has “changeSelection” event that is fired when list of selected items was c

Re: [qooxdoo-devel] Anyone needs switching locales and themes at runtime?

2008-06-16 Thread Dioc
We use runtime locale/language and theme switching in our application. We do not seriously depend on this feature but I should note that removing support of runtime switching can be painful for us (and not only for us) if: - there will not be an easy way to determine and set locale/theme at startu

[qooxdoo-devel] Layouts in an inline widget possible?

2008-06-16 Thread Kristjan Cočev
Hi, I am using the qx.ui.basic.Inline widget to display stuff in a page. Is it possible to assign a Layout (BoxLayout,CanvasLayout...) to an Inline widget, or do I have to do positioning myself (via the setTop, setLeft etc)? I have already tried it and it didn't work, just looking for a ver

Re: [qooxdoo-devel] Anyone needs switching locales and themes at runtime?

2008-06-16 Thread Fabian Jakobs
thron7 schrieb: >> The main reasons to cut this feature are performance and complexity. >> >> > > Complexity of the framework code or complexity of the final app, that > is?! Must be framework complexity... > The complexity of widgets sensitive to locale changes. e.g. any widget worki

Re: [qooxdoo-devel] Anyone needs switching locales and themes at runtime?

2008-06-16 Thread Fabian Jakobs
Hugh Gibson schrieb: >> Just for curiosity, could you roughly explain what this connection >> between the widgets and associated theme entries is needed for? If >> the widgets use it to listen for theme changes, wouldn't it also be >> possible to re-layout everything in case of a theme change, th

Re: [qooxdoo-devel] Problem in IFrame

2008-06-16 Thread Tobias Koller (GERMO GmbH)
Hm...for me it looks ok. w1.setSource(http://); Is correct. I also make it like this. Maybe someone else can check your problem. sorry Tobias Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von jhonny thio Gesendet: Montag, 16. Juni 2008 11:13 An: qooxdoo Dev

Re: [qooxdoo-devel] Problem in IFrame

2008-06-16 Thread jhonny thio
qx.Class.define("qx.ui.io.MyBrowser", { extend : qx.ui.window.Window, /* * CONSTRUCTOR * */ // construct : function(caption, i

Re: [qooxdoo-devel] Anyone needs switching locales and themes at runtime?

2008-06-16 Thread Fabian Jakobs
Hi Ralf, > Hi Fabian, > > RAP provides infrastructure that allows switching themes at runtime. > It's not yet API though, as theme-switching caused problems with earlier > qooxdoo versions. However some people asked for it on the RAP newsgroup > and I think there are some people actually do swit

Re: [qooxdoo-devel] error with mailinglist

2008-06-16 Thread jhonny thio
yeahh.. I same with you. I think you must not open that email, maybe that email contains virus.. because last time I open it, my localhost and browser has been blocked.. - Original Message From: Tobias Koller (GERMO GmbH) <[EMAIL PROTECTED]> To: qooxdoo Development Sent: Monday, June 16

[qooxdoo-devel] error with mailinglist

2008-06-16 Thread Tobias Koller (GERMO GmbH)
hi, every time I send an email to the mailingList i get a reply: [EMAIL PROTECTED] Content: Hi. This is the deliver program at zju.edu.cn. I'm afraid I wasn't able to deliver your message to the following addresses. This is a permanent error; I've given up. Sorry it didn't work out. [E

Re: [qooxdoo-devel] Problem in IFrame

2008-06-16 Thread Tobias Koller (GERMO GmbH)
Hi, could you give us an code-example how you try to load the page inside your iframe? Tobias Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von jhonny thio Gesendet: Montag, 16. Juni 2008 10:24 An: Qooxdoo Betreff: [qooxdoo-devel] Problem in IFrame hi my name is Jhonny

Re: [qooxdoo-devel] Anyone needs switching locales and themes at runtime?

2008-06-16 Thread thron7
> The main reasons to cut this feature are performance and complexity. > Complexity of the framework code or complexity of the final app, that is?! Must be framework complexity... Thomas - Check out the new SourceForg

[qooxdoo-devel] Problem in IFrame

2008-06-16 Thread jhonny thio
hi my name is Jhonny I want to ask something about IFrame. I want to make an application like browser. So this application can back, forward, and browsing. For the content of the webpage, I use Iframe.. But i have problem, If I open yahoo.com with my qooxdoo application, and then open it's Mail

Re: [qooxdoo-devel] Anyone needs switching locales and themes at runtime?

2008-06-16 Thread Hugh Gibson
> Just for curiosity, could you roughly explain what this connection > between the widgets and associated theme entries is needed for? If > the widgets use it to listen for theme changes, wouldn't it also be > possible to re-layout everything in case of a theme change, thus > making theme switchi