Re: [qooxdoo-devel] OnClose, Minimise Internal Window Component

2007-06-22 Thread FrozenDice
So any progress in having the Extended Window integrated into qooxdoo? I'm sure a lot of people would like to have a window component which can actually do things on exit and minimise. On Sat, 16 Jun 2007 06:20 +0100 (BST), Hugh Gibson <[EMAIL PROTECTED]> wrote: > > It would be nice if these nice

Re: [qooxdoo-devel] Serious problem with online API viewer

2007-06-22 Thread Hugh Gibson
> > I still get the script error in IE7 > > . Turning off > > script > > debugging shows very good performance in IE7. > > Should be fixed now. Yes, thanks. Hugh - This SF.n

Re: [qooxdoo-devel] Tables and ListViews

2007-06-22 Thread dimitri van der veken
Hi, in a table you can set columns invisible: this.table.getTableColumnModel().setColumnVisible(2, false); You can also change the tablemodel: this.table.getTableModel().setData(this._fetchDataWith_4_columns()); this.table.getTableModel().setColumns([ "ID", "A nu

Re: [qooxdoo-devel] Change data of ListView

2007-06-22 Thread dimitri van der veken
Hello, by looking at the code of ListView I get the feeling that it does not support the updating of data out of the box. I would suggest to use qx.ui.table.Table instead. Changing the data then becomes easy: var tableModel = new qx.ui.table.model.Simple(); var rowData = []; ... fill rowdata

[qooxdoo-devel] Tables and ListViews

2007-06-22 Thread Leander Hanwald
Hi all, is there any way to add, remove, rename and move columns tables and listviews when they are already shown? I find a way to rename the columns for tables, but not more :/ Greetings, Leander - This SF.net email is s

[qooxdoo-devel] Keyboard shortcuts

2007-06-22 Thread johnl
Hello. I'm wondering if it's possible to capture key combinations such as ctrl-s and ctrl-c in a textarea. If it is, what events should they be captured on: keydown, keypress, keyinput? If anyone out there has a working example, that'd be great. Thank you. David

Re: [qooxdoo-devel] Is it possible to change an atom or label's text?

2007-06-22 Thread FrozenDice
Well I'm looking for a way to be able to possibly also change some formatting of the text also. Specificly I want it to be grey, and choose it's font size. On 6/22/07, Sebastian Werner <[EMAIL PROTECTED]> wrote: > FrozenDice schrieb: > > Yeah it's generated. I also found that I could do > > setH

Re: [qooxdoo-devel] IE6 Windows 2000 qx.ui.table.Table problem

2007-06-22 Thread thron7
Stefan, we have a test machine with a Win2k/IE6 image on it. Unfortunately, this machine is right now undergoing mainenance, but hopefully we will be able to check your problem next week. =Thomas > Hello qooxdoo community, > > being new to this mailing list let me first say >Thank You< for creati

Re: [qooxdoo-devel] Legacy property excludeSpecificTreeLines in qx.ui.tree.Tree in trunk

2007-06-22 Thread Sebastian Werner
Thanks for this information. Fixed in SVN. Revision: 8707. Sebastian Dietrich Streifert schrieb: > There is still a legacy property in qx.ui.tree.Tree in current rev of trunk. > > Shouldn't this be converted? > - This SF

[qooxdoo-devel] Legacy property excludeSpecificTreeLines in qx.ui.tree.Tree in trunk

2007-06-22 Thread Dietrich Streifert
There is still a legacy property in qx.ui.tree.Tree in current rev of trunk. Shouldn't this be converted? -- Mit freundlichen Grüßen Dietrich Streifert -- Visionet GmbH Firmensitz: Am Weichselgarten 7, 91058 Erlangen Registergericht: Handelsregister Fürth, HRB 6573 Geschäftsführer: Stefan Lindne

Re: [qooxdoo-devel] DemoBrowser in Windows-Environment

2007-06-22 Thread Erich Konicek
thron7 schrieb: I use a linux server where my qooxdoo-sdk is located and where I run "make". But the client is a Windows (Vista :'( ) (with a network drive pointing to qooxdoo-skd) and I update qooxdoo via eclipse / subclipse on the client. That sounds interesting. Let me get that straigh

Re: [qooxdoo-devel] DemoBrowser in Windows-Environment

2007-06-22 Thread thron7
> I use a linux server where my qooxdoo-sdk is located and where I run > "make". > But the client is a Windows (Vista :'( ) (with a network drive > pointing to qooxdoo-skd) > and I update qooxdoo via eclipse / subclipse on the client. That sounds interesting. Let me get that straight: You have a

Re: [qooxdoo-devel] Spinner height

2007-06-22 Thread Sebastian Werner
In 0.7 you need to define it completely. The most users think this is more convenient because they have the full styling of a widget in one place. However with the current trunk and finally 0.7.1 you will have the possibility to add a base:true to include the super class definiton with lower pr

Re: [qooxdoo-devel] Spinner height

2007-06-22 Thread dperez
I have already changed the height in the spinner to 20, but I lose the top and bottom borders. I'm investigating why. Very strange. When extend the Ext appearance, and I want to redefining the 'spinner' entry. Should the full entry be redefined or I just can the new height value? This fails:

Re: [qooxdoo-devel] Spinner height

2007-06-22 Thread Sebastian Werner
No, I think not. Height is quite a functional property. That the widget comes with a default height is a good choice in this case. If the user or the appearance theme changes the font one must also correct the height there. Theme and user values have higher priority than init values so that is

[qooxdoo-devel] Spinner height

2007-06-22 Thread dperez
Hi, The spinner with the font I have choosed is taller than a combo. I've seen this in Spinner.js properties: { height : { refine : true, init : 22 }, } Wouldn't be better be its height defined in the appearance? -- View this message in context: http://www.nabble.com/

Re: [qooxdoo-devel] Measuring text

2007-06-22 Thread dperez
Good idea. We'll wait. Sebastian Werner wrote: > > > Definitely not. We should move it somewhere to the DOM. Even the current > text measure method should not be implemented there in the Label. > > I would think we let it in the old style currently and awaiting the > progress of qx.html2 w

Re: [qooxdoo-devel] DemoBrowser in Windows-Environment

2007-06-22 Thread Erich Konicek
thron7 schrieb: I'm using a Windows environment :-( and the tool/gendata.py creates demodata.js with caridge-returns (from the demoDescription). I putted a replace "\r" to "" into gendata.py, then it works. (patch attached). thanks for pointing that out. Are you using cygwin on Windows? W

Re: [qooxdoo-devel] DemoBrowser in Windows-Environment

2007-06-22 Thread thron7
Hi Erich, > Hi, > > then new DemoBrowser is very cool! > Now with source code view, ideal to learn. Thanks, glad you like it :-) > > I'm using a Windows environment :-( > and the tool/gendata.py creates demodata.js with caridge-returns (from > the demoDescription). > I putted a replace "\r" to "

Re: [qooxdoo-devel] Measuring text

2007-06-22 Thread Sebastian Werner
dperez schrieb: > Thanks Sebastian, > That explains the mystery. > > I'd like to add a static method for measuring test in Label: > > /** > [EMAIL PROTECTED] text {String} > [EMAIL PROTECTED] font {String} optional font. If unspecified, take the > default one > from the document > [EMAIL PROT

Re: [qooxdoo-devel] Measuring text

2007-06-22 Thread dperez
This would replace ComboBoxEx._getTextWidth() dperez wrote: > > Thanks Sebastian, > That explains the mystery. > > I'd like to add a static method for measuring test in Label: > > /** > [EMAIL PROTECTED] text {String} > [EMAIL PROTECTED] font {String} optional font. If unspecified, take the

Re: [qooxdoo-devel] Measuring text

2007-06-22 Thread dperez
Thanks Sebastian, That explains the mystery. I'd like to add a static method for measuring test in Label: /** [EMAIL PROTECTED] text {String} [EMAIL PROTECTED] font {String} optional font. If unspecified, take the default one from the document [EMAIL PROTECTED] width and height */ measure:

Re: [qooxdoo-devel] Is it possible to change an atom or label's text?

2007-06-22 Thread Sebastian Werner
FrozenDice schrieb: > Yeah it's generated. I also found that I could do > setHtmlAttribute("innerHTML", "something") Yes, but setHtmlAttribute should not be used in public when used for other stuff than apply IDs or classnames etc. To influence things which are dependend on the layout etc. it i

Re: [qooxdoo-devel] Serious problem with online API viewer

2007-06-22 Thread Sebastian Werner
Hugh Gibson schrieb: >>> My impression was it is not about the loading from the net that >> makes >>> navigating the samples slow. Maybe it's the load time of qooxdoo >>> in the >>> iframe?! >>> >> This was also my impression with a local installation of the demo >> browser. Unfortunately there

Re: [qooxdoo-devel] Measuring text

2007-06-22 Thread Sebastian Werner
Adding the label to the document influences the selected font (keyword: inheritance). So it is quite logical that the size depends on that. Sebastian dperez schrieb: > Very interesting this test from the Firebug Console: > > Test 1: > > new qx.ui.basic.Label('david')._computePreferredIn

Re: [qooxdoo-devel] Measuring text

2007-06-22 Thread dperez
Very interesting this test from the Firebug Console: Test 1: new qx.ui.basic.Label('david')._computePreferredInnerWidth()==38 Test 2: var et = new qx.ui.basic.Label('david'); et.setLocation(200,200); et.setZIndex(1000); et.addToDocument() et.setBackgroundColor('#ff0') et._computePreferred

[qooxdoo-devel] Measuring text

2007-06-22 Thread dperez
Hi, In qooxdoo 0.6.6 I used to use this code for measuring the width of text: (new qx.ui.basic.Label('My text')).getPreferredBoxWidth() In qooxdoo 0.7, I receive very high values. For instance for a label whose measured real width is 170 pixels, a value of 240 is returned. What may be the