Re: [qooxdoo-devel] Single images in build version

2009-05-13 Thread Jenec
e desired behavior. > Just open the qx.util.ResourceManager class and add > > return false; > > in the first line of the isClippedImage method (Line 107). That should > do the job. :) > > Best, > Martin > > Am 12.05.2009 um 16:23 schrieb Jenec: > >> &g

[qooxdoo-devel] Single images in build version

2009-05-12 Thread Jenec
Hi, is there any way to configure my build version to use only single images, instead of combined? Our graphic designer needs to be able preview his new graphics and combining images woul be too complicated for him.. -- View this message in context: http://www.nabble.com/Single-images-in-build-v

[qooxdoo-devel] Table footer

2009-03-04 Thread Jenec
Hi, I just wonder if I can have a second Table header at the bottom of the table (aka footer) and fill it with some custom data (not column names). -- View this message in context: http://www.nabble.com/Table-footer-tp22325510p22325510.html Sent from the qooxdoo-devel mailing list archive at Nab

Re: [qooxdoo-devel] How to get a parent of a DataEvent?

2009-02-11 Thread Jenec
Alexander Back wrote: > > otherwise this could be done inside the "complete" handler. > Ok, that was my idea, but HOW? this.addListener("completed", function(e) { e.getParent(); //this returns root class :-( e.getData(); //this isn't data event :-( ?.continueRendering( e

Re: [qooxdoo-devel] How to get a parent of a DataEvent?

2009-02-11 Thread Jenec
Basic problem is: I have a class "String", which should render some widgets using data from database, which are loaded using AJAX. I want to do it so simply for implementation as possible, so the class should be able to load the data itself, and not get them in a constructor. The reason is, that I

Re: [qooxdoo-devel] How to get a parent of a DataEvent?

2009-02-11 Thread Jenec
Yes, I know about getTarget(), but it returns the class, to which the event has been attached, so when I fire it in root class ( I'am getting it using qx.core.Init.getApplication() ), getTarget gives me the root class, instead of instance of gm.Komponents.String. See an updated example below.. I

[qooxdoo-devel] How to get a parent of a DataEvent?

2009-02-10 Thread Jenec
Hi, I have a little question for you: I need to get an object, which has fired an event. I place a Listener: this.addListener("someName", function(e) { someObject.someMethod(); //someObject is undefined here }, this); Then I fire a DataEvent using: qx.Class.define("gm.Komponents.String

Re: [qooxdoo-devel] How to disable the sort-Function of the Tableheader?

2009-02-03 Thread Jenec
Another issue regarding columns sorting: I need to implement server side sorting, so Ajax is needed after columns sorting changes. Which event fires on header clicking (change of the column sorting)? I use qx.ui.table.model.Simple() with qx.ui.table.columnmodel.Resize() Qooxdoo 0.8 -- View this m

[qooxdoo-devel] How to insert text at cursor position inside a TextField?

2009-01-07 Thread Jenec
Hi everybody, I need to insert some text at cursor position inside of a TextField. So I need to get a last cursor position inside a TextField. How? Thanks for help, Jan -- View this message in context: http://www.nabble.com/How-to-insert-text-at-cursor-position-inside-a-TextField--tp21328852

[qooxdoo-devel] Re ference to a TabView inside a Window

2008-10-21 Thread Jenec
I have a Window with a Tabview inside. Later I make a new Page for a TabView. How to call tabView.add(newPage) function when I havn't got any reference to the inner TabView? -- View this message in context: http://www.nabble.com/Reference-to-a-TabView-inside-a-Window-tp20088936p20088936.html S

Re: [qooxdoo-devel] How to get active window?

2008-10-20 Thread Jenec
This gives me reference to the window, which is just beeing closed, not the window which receive focus after it. But I have found another way how to get it. Every time, when some window changes focus, changeActive event is fired. Then you have to ask isActive() function whether the window is recei

[qooxdoo-devel] How to get active window?

2008-10-15 Thread Jenec
I have a application, which opens some windows and I need to get reference to curently active window. Details below: var alfaWin = new qx.ui.window.Window('alfa'); alfaWin.id = 'alfa'; var betaWin = new qx.ui.window.Window('beta'); betaWin.id = 'beta'; Then when I open() both windows and then c

Re: [qooxdoo-devel] Composite: "There is already a widget in this cell"

2008-10-07 Thread Jenec
Of course, I mean Composite with qx.ui.layout.Grid -- View this message in context: http://www.nabble.com/Composite%3A-%22There-is-already-a-widget-in-this-cell%22-tp19836283p19836843.html Sent from the qooxdoo-devel mailing list archive at Nabble.com. -

[qooxdoo-devel] Composite: "There is already a widget in this cell"

2008-10-07 Thread Jenec
I am positioning widgets using qx.ui.container.Composite() and need to replace content of certain rows in it, but of course I always get a message: Error: There is already a widget in this cell (7, 1). So all I need to know is how to remove content of cell (7,1) before inserting another widget. I