[qooxdoo-devel] Is this a bug on IE7 with new tab creating,help!

2008-06-02 Thread hywhy
what I use : IE7, QOOXDOO 0.7.3 now another problem, When I click the tree node , a new tab will be create,but the css style of the new tab has something wrong,the yellow bar on the top of the tab was lost, but it's work fine on firefox,anybody know why?thanks very much! -- View this message

Re: [qooxdoo-devel] Help ! What's wrong with my class Inheritance?

2008-06-02 Thread hywhy
thanks my friend,my problem has solved. I reMake the code ,and now it's work fine.The version that I use is the lasted release.thanks for your help! -- View this message in context: http://www.nabble.com/Help-%21-What%27s-wrong-with-my-class-Inheritance--tp17583936p17615180.html Sent from the

Re: [qooxdoo-devel] Disable log window

2008-06-02 Thread Pirlo
Of course! I did you told me. I found the make variable for build log (APPLICATION_SOURCE_LOG_LEVEL) and I setted off. Then I made build and it worked! ;) thanks for all! thron7 wrote: > > Pirlo wrote: >> Finally I got...! thanks for all! >> > > So how did you do it? Share your experience

Re: [qooxdoo-devel] destruct() question

2008-06-02 Thread thron7
kanugula wrote: > Hi, > > Using Demo Browser terminology for simplicity. > > If I have something like > var window = new qx.ui.window.Window(); > var group = new qx.ui.groupbox.GroupBox(); > var label = new qx.ui.basic.Label(); > group.add(label); > window.add(group); > > this.window=window; > this

Re: [qooxdoo-devel] using CSS style inside HorizontalSplitPane

2008-06-02 Thread thron7
Dan, mh, we have a similar scenario which works. Which widget is in your left hand side split? If you look at the Demobrowser, it uses style sheets (style.css and sourceview.css). They get included in the main app class with qx.html.StyleSheet.includeFile() and then the appropriate widgets get

Re: [qooxdoo-devel] Disable log window

2008-06-02 Thread thron7
Pirlo wrote: > Finally I got...! thanks for all! > So how did you do it? Share your experience with us! Thomas > Pirlo wrote: > >> Thanks for the answer. In the build version the windows appears too. It´s >> not important the log in the sourve version. But in the build version I´d >> like

[qooxdoo-devel] destruct() question

2008-06-02 Thread kanugula
Hi, Using Demo Browser terminology for simplicity. If I have something like var window = new qx.ui.window.Window(); var group = new qx.ui.groupbox.GroupBox(); var label = new qx.ui.basic.Label(); group.add(label); window.add(group); this.window=window; this.group=group; this.label=label; 1) Is

Re: [qooxdoo-devel] KeepFirstVisibleRowComplete(true) breaks when browser window is resized

2008-06-02 Thread kanugula
I never sensed the name KeepFirstVisibleRowComplete properly. Looks to me that it only fixes the 1st row and in fact it does. Why don't we have KeepLastVisibleRowComplete also? Huh..this may also break underlying remote table to adjust the data model accordingly. Thanks. Kanugula. Thanks. Kanu

Re: [qooxdoo-devel] KeepFirstVisibleRowComplete(true) breaks when browser window is resized

2008-06-02 Thread Derrell Lipman
On Mon, Jun 2, 2008 at 10:26 AM, kanugula <[EMAIL PROTECTED]> wrote: > > KeepFirstVisibleRowComplete(true) on Table works great when the browser > size > is normal. Some crazy users resize the browser to their personal > preference. Doesn't seem crazy to me. I believe users should be able to co

Re: [qooxdoo-devel] Problem when I try read if a checkbox is checked in a tree...

2008-06-02 Thread Edgardo Hernandez Lopez
Fabian thanks for you answer. function stuff(vLabel, vValue, vAddCheckBox, vCheckedBox, vIcon, vIconSelected) { treeRowStructure = qx.ui.tree.TreeRowStructure.getInstance().newRow(); // Here's our indentation and tree-lines treeRowStructure.addIndent(); // The standard tree

[qooxdoo-devel] KeepFirstVisibleRowComplete(true) breaks when browser window is resized

2008-06-02 Thread kanugula
Hi, qooxdoo 0.7.3 IE6/FF KeepFirstVisibleRowComplete(true) on Table works great when the browser size is normal. Some crazy users resize the browser to their personal preference. At that time, the last row is partially visible. I see the same behaviour in Demo Browser/Table_1. Does KeepFirstVi

Re: [qooxdoo-devel] Can't turn-off qooxdoo logging in build version

2008-06-02 Thread kanugula
I already rebuilt the build after the setting APPLICATION_BUILD_LOG_LEVEL = off Small correction. It stopped application logging. But its still logs system info like Demo Browser 273295" load demo: MyTest.html qx.core.Init[4] 277889: qooxdoo 0.7.3 277889: loaded 1 old classes .. After su

[qooxdoo-devel] using CSS style inside HorizontalSplitPane

2008-06-02 Thread Dan, Trif
Hi, I have the following situation: a HorizontalSplitPane where I flow into the RIGHT side a HTML content using a qx.ui.embed.HtmlEmbed object. My problem is if the HTML content has a CSS style defined for body that style is applied for the LEFT side of the HorizontalSplitPane too. Any idea

Re: [qooxdoo-devel] Disable log window

2008-06-02 Thread Pirlo
Finally I got...! thanks for all! Pirlo wrote: > > Thanks for the answer. In the build version the windows appears too. It´s > not important the log in the sourve version. But in the build version I´d > like it.. > > Where is the variable of makefile? I didn´t find it > > thron7 wrote: >> >>

Re: [qooxdoo-devel] Disable log window

2008-06-02 Thread Pirlo
Thanks for the answer. In the build version the windows appears too. It´s not important the log in the sourve version. But in the build version I´d like it.. Where is the variable of makefile? I didn´t find it thron7 wrote: > > Pirlo wrote: >> Hi! >> >> I´m trying to disable the log pop up. Bu

Re: [qooxdoo-devel] Disable log window

2008-06-02 Thread thron7
Pirlo wrote: > Hi! > > I´m trying to disable the log pop up. But I don´t manage it.. I have > searched other threads but I tried differents things like writing > qx.dev.log.Logger.ROOT_LOGGER.setMinLevel(qx.dev.log.Logger.LEVEL_OFF); or > something similar and thats doesn´t work... > > please I n

Re: [qooxdoo-devel] Help ! What's wrong with my class Inheritance?

2008-06-02 Thread thron7
Hi hywhy! Which qooxdoo version are you working with? On first glance, I don't see any issue with your code. What problem exactly do you get? (Error messages etc. would be helpful). Thomas hywhy wrote: > first sorry for my pool english, I wish you can understand me,thanks! > > who can help me?

Re: [qooxdoo-devel] Can't turn-off qooxdoo logging in build version

2008-06-02 Thread thron7
kanugula wrote: > Hi, > > I am using Demo Browser terminology for simplicity. > > I put the following code in Makefile.demo and Makefile.demobrowser. > APPLICATION_BUILD_LOG_LEVEL = off > > I still see the INFO messages logged in Log tab. > Are you looking at the build version of your app (A

[qooxdoo-devel] Disable log window

2008-06-02 Thread Pirlo
Hi! I´m trying to disable the log pop up. But I don´t manage it.. I have searched other threads but I tried differents things like writing qx.dev.log.Logger.ROOT_LOGGER.setMinLevel(qx.dev.log.Logger.LEVEL_OFF); or something similar and thats doesn´t work... please I need to close log pop up!

Re: [qooxdoo-devel] Problem when I try read if a checkbox is checked in a tree...

2008-06-02 Thread Fabian Jakobs
Hi Edgardo, > > I'm starting work with QooxDoo, I have a tree with checkboxes object, > my problem is when I try read the checkboxes selected this not show > anything. > Good choice :-) > I checked each tree's node and use isChecked() function but this no > say anything. > > When mark the check

[qooxdoo-devel] Help ! What's wrong with my class Inheritance?

2008-06-02 Thread hywhy
first sorry for my pool english, I wish you can understand me,thanks! who can help me?what's with my class Inheritance? it cant work!thanks qx.Class.define('template.TreeFile', { extend: qx.ui.tree.TreeFile, construct : function(labelOrTreeRowStructure, icon, iconSelected)