[qooxdoo-devel] how to get html content of a row/cell in a TreeVirtual

2012-01-26 Thread slah
Hi, could you please tell me how can I get the html content of a cell or a row from a TreeVirtual. I need that for printing purposes. Regards -- View this message in context: http://qooxdoo.678.n2.nabble.com/how-to-get-html-content-of-a-row-cell-in-a-TreeVirtual-tp7227653p7227653.html Sent fro

Re: [qooxdoo-devel] issue after changing font size

2012-01-26 Thread Benjamin Dreux
I found out that in qx.ui.list.List there is property called itemHeight. Changeing the value of this property help in my case. So i suppose that we should init this value with function . This function must take in to account the size of the used font. Regards Le 26 janvier 2012 11:13, Benjamin

Re: [qooxdoo-devel] TreeVirtual to html

2012-01-26 Thread slah
Hi Daniel, fixed using : var data = tree.getDataModel().getData(); for (var i = 1; i < data.length; i++) try { if (data[i].children.length>0) tree.nodeSetOpened(data[i], true); } catch(e){}; thank

[qooxdoo-devel] issue after changing font size

2012-01-26 Thread Benjamin Dreux
HI I've changed the size of the defaut font in my application. After a while i discovered that in lists, part of the letter is hidden. In particular i've noticed that the botom part of the letters 'p', 'y' etc Now i'm wondering how can i change the size of the list item. I've tried to use the dele

Re: [qooxdoo-devel] Understanding Class Members Question

2012-01-26 Thread Simon White
In regards to properties the items you gain are well worthwhile. My initial mistake was forgetting about arrays being by reference and thinking I would have to initialize all the members. Thanks, Simon On 26/01/2012 9:56 AM, Derrell Lipman wrote: > On Thu, Jan 26, 2012 at 09:47, Simon White >

Re: [qooxdoo-devel] Understanding Class Members Question

2012-01-26 Thread Derrell Lipman
On Thu, Jan 26, 2012 at 10:22, Simon White wrote: > Thank-you that certainly makes sense as I forgot that arrays are by > reference. > > However that does not explain the other missing items that I listed in > my initial post. Yeah, that's unrelated to this issue, I think. Someone with more know

Re: [qooxdoo-devel] Understanding Class Members Question

2012-01-26 Thread Simon White
Thank-you that certainly makes sense as I forgot that arrays are by reference. However that does not explain the other missing items that I listed in my initial post. Simon On 26/01/2012 9:56 AM, Derrell Lipman wrote: > On Thu, Jan 26, 2012 at 09:47, Simon White >

Re: [qooxdoo-devel] Understanding Class Members Question

2012-01-26 Thread Derrell Lipman
On Thu, Jan 26, 2012 at 09:47, Simon White wrote: > Hi > > I think the part that does not make sense is that when I create and new > object I assumed that it would get its own copy of all the members of > the prototype. I did not expect it to look up the inheritance chain and > find the property

Re: [qooxdoo-devel] Understanding Class Members Question

2012-01-26 Thread Simon White
Hi I think the part that does not make sense is that when I create and new object I assumed that it would get its own copy of all the members of the prototype. I did not expect it to look up the inheritance chain and find the property on the prototype. What I means if I had a property call "m

Re: [qooxdoo-devel] Why does IE9 not display application correctly?

2012-01-26 Thread Simon White
Browser Mode = IE9 Document Mode = IE9 Standards On 26/01/2012 7:47 AM, Daniel Wagner wrote: > Hi Simon, > > could you please open the dev tools (F12) and let us know which Browser > and Document mode IE is running in? > > Also, is your application using a custom theme and/or custom widgets? If >

Re: [qooxdoo-devel] Why does IE9 not display application correctly?

2012-01-26 Thread Daniel Wagner
Hi Simon, could you please open the dev tools (F12) and let us know which Browser and Document mode IE is running in? Also, is your application using a custom theme and/or custom widgets? If not, are you seeing the same problem in the 1.6 Widget Browser (http://demo.qooxdoo.org/1.6/widgetbrows

Re: [qooxdoo-devel] Why does IE9 not display application correctly?

2012-01-26 Thread Simon White
Hi I am using version 1.6 and IE9 on Windows 7 64bit. Simon On 26/01/2012 1:17 AM, Tristan Koch wrote: > Hi Simon, > > we support IE6+. > > Which version of qooxdoo are you using? > > Regards > Tristan > > Am 25.01.2012 um 22:15 schrieb Simon White: > >> Hi >> >> I have been building a RIA and u

Re: [qooxdoo-devel] error handling

2012-01-26 Thread thron7
I don't know if this addresses your issue exactly, but have you tried disabling qx' global error handling? For your build jobs add: "environment" : { "qx.globalErrorHandling" : false } T. On 01/26/2012 12:16 PM, Tobias Oetiker wrote: > Often when I debug a qx application, I get bitt

[qooxdoo-devel] error handling

2012-01-26 Thread Tobias Oetiker
Often when I debug a qx application, I get bitten by try catch blocks that hide the actual problem. The actual error is caught by some higher up try catch block and replaced with a more generic error message, dropping the wording of the origginal problem. a) is there a policy on this within qx co

Re: [qooxdoo-devel] AddListener Question

2012-01-26 Thread John Spackman
This is related to your other question re prototypes; if you define a member __changedItems, the value you assign in the class definition is put in the prototype of the class. Instances of that class which refer to __changedItems will get the value from the prototype (i.e. all instances will chare

Re: [qooxdoo-devel] Understanding Class Members Question

2012-01-26 Thread John Spackman
In javascript, an object's prototype is how class inheritance is implemented; the short explanation is that properties which appear as properties of the object belong to the object, but those in the prototype belong to the class and are common to all instances of that class. The long explanation i

Re: [qooxdoo-devel] TreeVirtual to html

2012-01-26 Thread Daniel Wagner
Hi, your approach looks solid to me. Alternatively, you could just grab the innerHTML from the tree pane and stuff it in a window: var pane = tree._getChildren()[0].getChildren()[0]._getChildren()[1].getChildren()[0]; this.__treeHtml = pane.getContentElement().getDomElement().innerHTML; var wi

Re: [qooxdoo-devel] Why does IE9 not display application correctly?

2012-01-26 Thread thron7
On 01/25/2012 10:15 PM, Simon White wrote: > By the way the fastest browser appeared to me to be Opera v 11.61 and it > looked great. Yep, when it comes to loading speed Opera is usually the fastest, even faster than Chrome. T.