[qooxdoo-devel] Table Updation Issue/Bug ?

2006-10-15 Thread Alee
column then the rows are updated. I have tried calling flushGlobalQueues but it didnt work. I'm using setData to update the table model. Do I need to open a bug report? Or its just I'm doing something wrong? Regards, Alee -- View this message in context: http://www.nabble.com/Tabl

Re: [qooxdoo-devel] Get rid of the log/ debug window

2006-10-09 Thread Alee
r that. > > That does disable logging to the log window, however it does not stop the > small "log" window appearing when the application is first loaded in the > browser. > > Any other ideas? Perhaps I have to do a special build or something? > Thanks > > Dan >

Re: [qooxdoo-devel] Get rid of the log/ debug window

2006-10-09 Thread Alee
Hello Dan try using qx.dev.log.Logger.ROOT_LOGGER.setMinLevel(qx.dev.log.Logger.LEVEL_OFF); Dan1234 wrote: > > A no doubt shamefull question to ask, but > > How do I turn off/ stop that debug/ log window popping up. > > I'm running 0.61 > > I thought I could do something like > qx.de

Re: [qooxdoo-devel] Debugging in IE

2006-10-06 Thread Alee
Hi alex.d, You can use Visual InterDev 6.0 or Visual J++ 6.0 from the suit. I dont think Visual C++ 6.0 supports JavaScript debugging. Hope it helps. Regards, Alee alex.d wrote: > > Yes, it works with Script Debugger, but not with Visual Studio 6. What > Visual Studio versio

[qooxdoo-devel] Debugging in IE

2006-10-05 Thread Alee
default these options are checked. Restart your Internet Explorer. Once this is done, you'll see an option in the View menu, saying Script Debugger. You can use other IDEs like InterDev, VS 2000 or VS.NET etc as well for debugging. Hope it helps. Regards, Alee -- View this message in

Re: [qooxdoo-devel] Simple page (based on Symfony-project.com)won't render in IE

2006-09-11 Thread Alee
If tag doesn't support any attributes then one should use the shorter form with a leading space before />. Otherwise write the closing tag instead. http://www.w3.org/TR/xhtml1/#guidelines (C2 and C3). Oliver Japel wrote: > > >> As I know this also does not work in this style in XHTML. > > w

Re: [qooxdoo-devel] Disable Logging

2006-08-29 Thread Alee
, Alee D. Fillpot wrote: > > How do I turn off all logging? I do not want the popup window to open at > all, and even doing this: > > qx.dev.log.Logger.ROOT_LOGGER.removeAllAppenders(); > var divAppender = new qx.dev.log.DivAppender("debug&quo

Re: [qooxdoo-devel] Table UI Updation Problem

2006-08-28 Thread Alee
oCmp) { return len; } len -= 1; } while (len >= 0); return -1; }; dperez wrote: > > Hi Alee, > > Maybe it would be interesting to add this functionality to > SimpleTableModel, because nearly every user of th

Re: [qooxdoo-devel] Table UI Updation Problem

2006-08-28 Thread Alee
, DeleteRow, RemoveRow, updateRow. These could also be done without sub-classing but IMHO sub-classing way kept the code more clean. Thanks, Alee. alex.d wrote: > > Hmm..., > I really don't see any necessity for you to override SimpleTableModel > class. You can use: > rowData

Re: [qooxdoo-devel] Table UI Updation Problem

2006-08-28 Thread Alee
successfully but isnt showing. This also happens when I call tableModel.setValue(...) .. which sometimes is updated automatically but sometimes it just doesnt. Have to resize a browser and then it's updated. Thanks, Alee. alex.d wrote: > > Hi, > that works fine for me. How exact d

Re: [qooxdoo-devel] Table UI Updation Problem

2006-08-28 Thread Alee
Hello alex.d, Thanks for you reply. It doesn’t seem to work. I put table._updateScrollBarVisibility(); right after the call to add the data but still it doesn't update the UI. Alee. alex.d wrote: > > Hi Alee, > > after you add the data to your data array(rowDat

[qooxdoo-devel] Table UI Updation Problem

2006-08-28 Thread Alee
e tried calling qx.ui.core.Widget.flushGlobalDisplayQueue() after the updation but it didnt work. Any help? Thanks, Alee. -- View this message in context: http://www.nabble.com/Table-UI-Updation-Problem-tf2175737.html#a6015732 Sent from the qooxdoo-devel foru

Re: [qooxdoo-devel] api reference does not work

2006-08-21 Thread Alee
Hello Sebastian, Getting this error in Firefox and in IE the value 60008ms is increased to 60083ms. Rest is same though. 060851 WARN: qx.io.remote.RemoteRequestQueue[81]: Timeout: transport 84 060851 WARN: qx.io.remote.RemoteRequestQueue[81]: 60008ms > 6ms 060851 WARN: qx.io.remote.Remot

Re: [qooxdoo-devel] JSEclipse

2006-08-11 Thread Alee
Hello, I have used both. Aptana comes in two flavours. Their own Eclipse based IDE and an Aptana plugin for Eclipse. Aptana's code assist capability is more powerful than JSEclipse. It also allows you to build your custom code completion profiles. Also it differentiates functions, classes, object

[qooxdoo-devel] Scroll bar in TabViewButtons

2006-08-06 Thread Alee
Hello, While having multiple tabview buttons in a tabview, if the number of tabs are increased to a large number, there aint any scroll bar comming. How can I bring a scroll bar so that the user can manipulate the tabview pages through the tabview buttons. for (var i = 0; i < 30; i += 1)

[qooxdoo-devel] How to give "id" to a div tag using QooxDoo

2006-07-28 Thread Alee
Hello, How can we give an "id" to the internal style sheet that QooxDoo uses? I tried giving it by addProperty, but it appends "_value" before the property name. Can anyone suggest any alternative way for doing ? Thanks, looking for a positive response :) Ali -- View this message in context:

Re: [qooxdoo-devel] How to write a qooxdoo dialog like window.confirm()?

2006-07-27 Thread Alee
Hello Erich, I think you can do your work without actually halting the execution. (As it will block other UI elements it self.) And there is a topic/thread existing with similar issue as well. Have a look at the following approach. http://www.nabble.com/Replacement-for-window.confirm%28%29--tf9

Re: [qooxdoo-devel] QxTabPage Problem

2006-07-24 Thread Alee
Problem was in the line .. tabPage = createTabViewPage(arTabNames[i]); here instead of arTabNames[i], the reference of the QxTabButton was needed. -- View this message in context: http://www.nabble.com/QxTabPage-Problem-tf1983938.html#a5465242 Sent from the qooxdoo-devel foru

[qooxdoo-devel] QxTabPage Problem

2006-07-22 Thread Alee
Hello, I have made a function that takes tabpage names and an array containing QxListViews. I call this function as var arTabNames = ["Tab1", "Tab2", "Tab3"]; // populate ld1, lc1, ld2, lc2 var lv1 = new QxListView(ld1, lc2); lv1.set(...); var lv2 = new QxListView(ld2, lc2); lv2.set(...); var

Re: [qooxdoo-devel] How to add events to an inherited class?

2006-07-06 Thread Alee
Thanks! :) .. The *self* thing solved the issue. During editing I think new was deleted. -- View this message in context: http://www.nabble.com/How-to-add-events-to-an-inherited-class--tf1898545.html#a5198144 Sent from the qooxdoo-devel forum at Nabble.com. Using Tomcat but need to do more? Ne

Re: [qooxdoo-devel] How to add events to an inherited class?

2006-07-06 Thread Alee
Here is the simplified code. Now I'm adding the events through addEventListener but it's not called. Probably I'm making some mistake AlertWindow = function(msg, title, msgIcon, msgIconWidth, titleIcon, titleIconWidth, buttonType, callback, width, height, windowManager) {

Re: [qooxdoo-devel] Modal window doesn't block the UI

2006-07-06 Thread Alee
The situation I'm talking about is a bit different, as in this case modal window doesn't freeze, but allows you to create multiple modal windows by pressing the button through space bar. Once you click on the modal window, it blocks the UI (including the button). I also encoutered with a situatio

[qooxdoo-devel] How to add events to an inherited class?

2006-07-05 Thread Alee
Hello, I have made a class that inherits QxWindow and resembles Windows' MessageBox function. I tried adding the events(on the buttons) in the contructor by writing btn.addListener(...) but it doesn't seem to work. Any other ways of doing it? Regards, Ali -- View this message in context: http

[qooxdoo-devel] Modal window doesn't block the UI

2006-07-05 Thread Alee
Hello, Create a button and upon it's 'execute' event, show a modal window. Now, run it and click the button. It will bring a modal window infront of you. Things may seem working pretty well. But if you try pressing space bar, after clicking the button, it will be pressed and bring another modal w