Re: [qooxdoo-devel] Firebug 1.0

2006-12-06 Thread Dietrich Streifert
I just installed the beta and wow! It's really worth installing it event in beta state! I have a relative huge widget stack which takes about 3 to 5 seconds before everything is created and now I'm able to search the time consuming parts with the profiler. Thank you for the hint Daniel. Best

Re: [qooxdoo-devel] TextFeild focus events

2006-12-06 Thread Fabian Jakobs
Aaron Cooper schrieb: > Fugeddit! > > Found a post about using generic javascript event names. So this works: > > var txt_email = new ftmDataEntryTextfield('email',50,150); > txt_email.addEventListener("blur", function(e) { > txt_email.setValue(txt_email.getValue()+'@domain.co.nz'); > }); >

Re: [qooxdoo-devel] Table with embeded controls in the cell

2006-12-06 Thread Andreas Junghans
Hi Jim, Am 07.12.2006 um 01:16 schrieb Jim Hunter: > Thanks for the example. I used it verbatim to see if I could get > a nice little hotlink to work and it 'looks' correct but nothing > happens when you click the link. The function updateDataCellElement > never gets called and this is wh

[qooxdoo-devel] Firebug 1.0

2006-12-06 Thread Daniel Gagnon
I just love that nifty Firefox Extension. The 1.0 release is near (beta is available and working like a charm). It's the best help ever made to code in Javascript. Profiling, debugging, inspecting, it does everything! Just look at the functions for 1.0, it's jaw dropping. http://www.getfirebug

Re: [qooxdoo-devel] Table with embeded controls in the cell

2006-12-06 Thread Jim Hunter
Andreas, Thanks for the example. I used it verbatim to see if I could get a nice little hotlink to work and it 'looks' correct but nothing happens when you click the link. The function updateDataCellElement never gets called and this is where is looks like it's setting up the onclick event. I ex

Re: [qooxdoo-devel] TextFeild focus events

2006-12-06 Thread Aaron Cooper
Fugeddit! Found a post about using generic javascript event names. So this works: var txt_email = new ftmDataEntryTextfield('email',50,150); txt_email.addEventListener("blur", function(e) { txt_email.setValue(txt_email.getValue()+'@domain.co.nz'); }); - Original Message - From: Aa

[qooxdoo-devel] TextFeild focus events

2006-12-06 Thread Aaron Cooper
Hi all, Can't see anything on this in the archive, and I'm sure it's simple. I have a textFeild for entering an email address. I want to add an event listener for focusOut so that the domain part of the address is automatically added. Here is my code, I have found the FocusEvent class in the

[qooxdoo-devel] More RemoteTableModel

2006-12-06 Thread Bryan Waters
I'm still working on this but at the moment and i'm coming up to speed on ajax and qooxdoo so i'm not sure whether i'm dealing with a bug in my code or whether i'm there is a bug in my code. The problem is that while the table model loads just fine, the table itself doesn't display. Before, I was

[qooxdoo-devel] accordian (bounty)

2006-12-06 Thread Clark C. Evans
I'm looking for an accordian component to use within a qooxdoo system. By accordian I'm referring to a user interface widget similar to a tabbed folder (showing only one content div at a time), but where the handles are vertically aligned and extend the width of the component. In particular, I'm l

Re: [qooxdoo-devel] Table with embeded controls in the cell

2006-12-06 Thread Jim Hunter
On 12/6/06, Til Schneider <[EMAIL PROTECTED]> wrote: Jim Hunter wrote: > I have searched the archives and don't see a solution for my problem. I > am in need of placing a button into the cell of a Table. And naturally I > need to be able to respond to the click event of that button. For perform

Re: [qooxdoo-devel] Native IE7 XMLHttpRequest object incompatibility problem

2006-12-06 Thread Dietrich Streifert
Yep! It is fixed. Thank you Fabian. Regards Fabian Jakobs schrieb: > Hello Dietrich, > > I have modified the order, the msxml implementations are searched. > msxml3 is now the preferred implementation. This should fix this issue. > > Best Fabian > > > > -

[qooxdoo-devel] Current svn trunk rev. 5092 stable?

2006-12-06 Thread Dietrich Streifert
Hello All, is the current svn rev. 5092 stable enough to develop with? Thank you for your answer. -- Mit freundlichen Grüßen Dietrich Streifert Visionet GmbH - Take Surveys. Earn Cash. Influence the Future of IT Join Sou

Re: [qooxdoo-devel] Problem with RemoteTableModel

2006-12-06 Thread Martin Schaefer
Hi Peperoni, find my code below (which I think can be simplified by using a text/json mime type). I can't see an advantage in making an async call here. qx.OO.defineClass("MyTableModel", qx.ui.table.RemoteTableModel, function () { qx.ui.table.RemoteTableModel.call(this); }); qx.Proto._loadRow

Re: [qooxdoo-devel] Making atoms selectable

2006-12-06 Thread Hugh Gibson
Sebastian, > please use HtmlEmbed instead. Well, that works in that the "-moz-user-select:none" flag has disappeared in FF, however, I still can't select text with FF. In IE if setSelectable(false) is called I can't select text; if I pass in true then I can select text (but the selection can e

Re: [qooxdoo-devel] Problem with RemoteTableModel

2006-12-06 Thread peperoni
> qx.Proto._loadRowCount = function() { >... >mycall = rpc.callAsync(this._setLoadedRowCount, "getRowCount"); >this._onRowCountLoaded(); > }; > You have to call _onRowCountLoaded when you have the result, not > directly after sending your asynchronous request. When I don call _o

Re: [qooxdoo-devel] Problem with RemoteTableModel

2006-12-06 Thread Til Schneider
> qx.Proto._loadRowCount = function() { >... >mycall = rpc.callAsync(this._setLoadedRowCount, "getRowCount"); >this._onRowCountLoaded(); > }; You have to call _onRowCountLoaded when you have the result, not directly after sending your asynchronous request.

Re: [qooxdoo-devel] Table with embeded controls in the cell

2006-12-06 Thread Andreas Junghans
Hi, Am 06.12.2006 um 13:09 schrieb Til Schneider: > @Andreas Junghans: As far as I know, you are using links in a > table. Can > you post a small example to the list? I'm using a custom data cell renderer for that. The values (returned by the table model) for links look like this: {href: "j

Re: [qooxdoo-devel] Table with embeded controls in the cell

2006-12-06 Thread Til Schneider
Jim Hunter wrote: > I have searched the archives and don't see a solution for my problem. I > am in need of placing a button into the cell of a Table. And naturally I > need to be able to respond to the click event of that button. For performance reasons the table uses plain HTML for cell rende

[qooxdoo-devel] Problem with RemoteTableModel

2006-12-06 Thread peperoni
Hello, I tried to make an async remote call. The call is working and answers with the right row count. I can alert the result but I can`t set the _rowCount inside the class with it. I tried it this way in _setLoadedRowCount: qx.OO.defineClass("my.ui.table.DBRemoteTableModel", qx.ui.table.Remote

Re: [qooxdoo-devel] Making atoms selectable

2006-12-06 Thread Sebastian Werner
Hi Hugh, please use HtmlEmbed instead. Sebastian Hugh Gibson schrieb: > We are showing the content of a message, which is HTML, in an atom. We want > the message to be selectable. I've tried calling setSelectable(true) but it > has no effect. > > In Firefox the enclosing div has "-moz-user-s

Re: [qooxdoo-devel] qx.ui.table.Table drag and drop

2006-12-06 Thread CSBrown
Thank you for the example, it works great. I was not checking that the pointer was over a row and so the drag was also starting when the pointer was over the header. This caused the column reorder and the drag to operate concurrently. Thanks, Chris. Til Schneider wrote: > >>Adding a dragstart

[qooxdoo-devel] Making atoms selectable

2006-12-06 Thread Hugh Gibson
We are showing the content of a message, which is HTML, in an atom. We want the message to be selectable. I've tried calling setSelectable(true) but it has no effect. In Firefox the enclosing div has "-moz-user-select:none" in the styles, whatever the setting of selectable. Is this a bug? Or i

Re: [qooxdoo-devel] qx.ui.table.Table drag and drop

2006-12-06 Thread Til Schneider
CSBrown wrote: > I am trying to implement drag and drop from the table to another component. > So far, I have only been able to attach an event to the table but that > interferes with resizing and reordering the columns. I don't understand this. Drag and drop happens in the table body. Column res

[qooxdoo-devel] simple Question: groupbox width:100%, height:100%

2006-12-06 Thread Tobias Koller (GERMO GmbH)
Hello, how can i set the height and width of f.e. a groupbox to 100%. group1.setDimension("100%","auto"); and group1.setWidth("100%"); but it doesn't work. thanks - Take Surveys. Earn Cash. Influen

Re: [qooxdoo-devel] Native IE7 XMLHttpRequest object incompatibility problem

2006-12-06 Thread Fabian Jakobs
Hello Dietrich, I have modified the order, the msxml implementations are searched. msxml3 is now the preferred implementation. This should fix this issue. Best Fabian - Take Surveys. Earn Cash. Influence the Future of IT

Re: [qooxdoo-devel] qx.ui.table.Table drag and drop

2006-12-06 Thread CSBrown
I am trying to implement drag and drop from the table to another component. So far, I have only been able to attach an event to the table but that interferes with resizing and reordering the columns. I am trying to intercept the dragstart and cancel it if it originates from the table header. Also

Re: [qooxdoo-devel] Native IE7 XMLHttpRequest object incompatibility problem

2006-12-06 Thread Fabian Jakobs
Dietrich Streifert schrieb: > I'v tried your test. The problem is there. Here is the content of the > debug area: > > qx.core.Init[3] > 000406: qooxdoo 0.7-pre (r5009) > 000422: loaded 278 classes > 000422: client: mshtml-7.0/win/de > qx.component.init.InterfaceInitComponent[29] > 000422: initiali

Re: [qooxdoo-devel] Native IE7 XMLHttpRequest object incompatibility problem

2006-12-06 Thread Dietrich Streifert
I'v tried your test. The problem is there. Here is the content of the debug area: qx.core.Init[3] 000406: qooxdoo 0.7-pre (r5009) 000422: loaded 278 classes 000422: client: mshtml-7.0/win/de qx.component.init.InterfaceInitComponent[29] 000422: initialize runtime: 0ms 000484: main runtime: 62ms 0

Re: [qooxdoo-devel] some issues with a login form

2006-12-06 Thread Fabian Jakobs
Hi Morb, > Hi, > I'm very glad that I have found Qooxdoo - it's really what I have look for. > > I need a user login form for my application. The basics work...but > - the username and userpassword are not transmited > - the protection against multiple send requests at the same time don't work >

Re: [qooxdoo-devel] Native IE7 XMLHttpRequest object incompatibility problem

2006-12-06 Thread Fabian Jakobs
Hello Dietrich, I'm currently testing my application against IE7. I'm using XMLHttpRequest (via RemoteRequest) and doing sometimes manipulations of the received XML document. In some scenarios I need to create a xml document and copy nodes from one document to the other, in this case from a x

[qooxdoo-devel] Destroy/destructor. Is it needed? when should I call it?

2006-12-06 Thread zindel
Hello I'm using qx.ui.pageview.tabview.TabView control. And I'm adding/removing the tabs dynamically... Each tab has some controls on it. Should I call destroy or any other kind of destructor - when closing the tab or browser garbage collector does all the job? Also will other controls located

Re: [qooxdoo-devel] qx.sys.Client::getLocale

2006-12-06 Thread Fabian Jakobs
Hello Martin, > can anybody tell me what locale is returned by the > getLocale/getLocaleVariant methods of the qx.sys.Client class? It seems to > be the language of the browser user interface. I expected the language > setting of the browser's options, which is used for requests. Is there any > way