[qooxdoo-devel] Strange error in IE

2011-05-05 Thread sid_curious
Hello, I'm receiving a strange error when I try to load the application in IE8: Webpage error details User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152;

Re: [qooxdoo-devel] qooxdoo 1.4 and 1.3.1 released

2011-04-14 Thread sid_curious
well, it seems that performance in IE(8) was considerably improved in 1.4! -- View this message in context: http://qooxdoo.678.n2.nabble.com/qooxdoo-1-4-and-1-3-1-released-tp6251025p6272633.html Sent from the qooxdoo mailing list archive at Nabble.com. ---

Re: [qooxdoo-devel] Enabling the Qx profiler

2011-03-22 Thread sid_curious
sorry, as i said in the comment from the opened bug the right jobs are these: "source-script" : { "extend" : ["profiling"], "variants" : { "qx.aspects" : [ "on" ] }, "require" : { "qx.Class" : ["qx.core.Aspect", "qx.dev.Profile"] } } and "source-all" : {

Re: [qooxdoo-devel] Enabling the Qx profiler

2011-03-22 Thread sid_curious
Hi T, I've accidentally started the profiler using the following job: "source-all" : { "require" : { "qx.Class" : ["aspects.Aop"] }, "variants" : { "qx.aspects" : [ "on" ] }, "settings" : {

Re: [qooxdoo-devel] Enabling the Qx profiler

2011-03-21 Thread sid_curious
Hi, I have received the same error message: " Please initialize 'qx.ui.window.Manager' objects using the new keyword!" when I used profiling. I'm using qooxdoo 1.3 and my job it looks like: "source-script" : { "extend" : ["profiling"],

[qooxdoo-devel] IE6 and transparent PNG image files

2010-09-22 Thread sid_curious
Hello, I know that Internet Explorer 6 has a problem with the alpha channel transparency of PNG image files. I've searched the forum and I saw that http://qooxdoo.678.n2.nabble.com/Rounded-border-colours-in-Internet-Explorer-qooxdoo-0-8-beta1-td681002.html#a723758 the transparent PNG support for

Re: [qooxdoo-devel] Tooltip on the table cell

2010-07-17 Thread sid_curious
Hi danovics, I'm sorry for my late answer, I made that example using the API Help and I was thinking that if: table.getTableColumnModel().getHeaderCellRenderer(0).setToolTip("ToolTipTxt"); set the tooltip for col 0, table.getTableColumnModel().getHeaderCellRenderer(1).setToolTip("ToolTipTxt");

Re: [qooxdoo-devel] Tiled toolbar

2010-07-13 Thread sid_curious
Hi Jeff, do you mean something similar with http://tinyurl.com/2ef2obu this ? if yes, here is what you need: var decorator= new qx.ui.decoration.Background().set({ backgroundImage : http://www.wonderbackgrounds.com/glitter/backgrounds/glitter_background_b1.gif', backgroundPosition

Re: [qooxdoo-devel] Tooltip on the table cell

2010-07-13 Thread sid_curious
Hi danovics, to add a tooltip to a header cell you can use: table.getTableColumnModel().getHeaderCellRenderer(0).setToolTip("ToolTipTxt"); a working example is http://tinyurl.com/36ka2ts here -- View this message in context: http://qooxdoo.678.n2.nabble.com/Tooltip-on-the-table-cell-tp31614

Re: [qooxdoo-devel] qooxdoo: getting the desired size for a widget?

2010-07-08 Thread sid_curious
getSizeHint was the first thing in my mind, in order to give an advice to Ken, but I made an http://tinyurl.com/2ck8u7d example with getSizeHint and it seems that something is wrong there. -- View this message in context: http://qooxdoo.678.n2.nabble.com/qooxdoo-getting-the-desired-size-for-a-

Re: [qooxdoo-devel] Tree - setModelSelection problem

2010-06-28 Thread sid_curious
done: http://bugzilla.qooxdoo.org/show_bug.cgi?id=3809 #3809 -- View this message in context: http://qooxdoo.678.n2.nabble.com/Tree-setModelSelection-problem-tp5223872p5231051.html Sent from the qooxdoo mailing list archive at Nabble.com. --

Re: [qooxdoo-devel] Custom validation manager for a form

2010-06-27 Thread sid_curious
done: http://bugzilla.qooxdoo.org/show_bug.cgi?id=3802 #3802 -- View this message in context: http://qooxdoo.678.n2.nabble.com/Custom-validation-manager-for-a-form-tp5215747p5223922.html Sent from the qooxdoo mailing list archive at Nabble.com.

[qooxdoo-devel] Tree - setModelSelection problem

2010-06-27 Thread sid_curious
Hi, I'm using a tree and I saw that setModelSelection method works only for visible tree items or folders. is this a bug or is how is is supposed to work? I've changed the code from the demo in order to show the problem. here is http://tinyurl.com/2u326mb my example . Press Show Selected Items

[qooxdoo-devel] Custom validation manager for a form

2010-06-24 Thread sid_curious
Hi, is there a possibility to set a custom validation manager for a form? my question comes after a problem that I had with the Manager's method __validateRequired and solved it in another way. At that time an overwritten __validateRequired could help me (see my last post on http://qooxdoo.678.n

Re: [qooxdoo-devel] Calling a superclass method from a different method

2010-06-18 Thread sid_curious
@Derrell & T.: thanks for your answers! @T: I've created a widget which looks like http://qooxdoo.678.n2.nabble.com/file/n5193730/gigi1.jpg , in fact is a list which has 2 buttons (+ open a new window and select some items and after that the items are added to the list, - remove the selected ite

Re: [qooxdoo-devel] Calling a superclass method from a different method

2010-06-17 Thread sid_curious
hi, i have the same question: qx.Class.define("my.cool.A", { extend : qx.core.Object, ... members : { foo : function() { alert("A"); } } }); qx.Class.define("my.cool.B", { extend : my.cool.A, ... members : { foo : function() { alert("B") }, foo2 : fun

Re: [qooxdoo-devel] HTML code not working in table

2010-05-20 Thread sid_curious
Hi Jonathan, thanks for your answer! Regards, sid -- View this message in context: http://qooxdoo.678.n2.nabble.com/HTML-code-not-working-in-table-tp5076354p5079592.html Sent from the qooxdoo mailing list archive at Nabble.com. --

[qooxdoo-devel] HTML code not working in table

2010-05-20 Thread sid_curious
I saw that I cannot add buttons table data and I've tried to use some HTML code in a tabel column which has an qx.ui.table.cellrenderer.Html() renderer. My problem is: if I click on the image i don't receive the alert. The example is http://tinyurl.com/29tvgd4 here . I need an advise in order t