Re: [qooxdoo-devel] How to reload SimpleTableModel

2009-06-30 Thread Kanugula
Sorry, my question makes no sense. The Simple table model does not have to know what the backend is! It will be user responibility to code for reloadData(). Thank you. Kanugula. Kanugula wrote: > > Hi, > > Is there an api to reload SimpleTableModel data

[qooxdoo-devel] How to reload SimpleTableModel

2009-06-30 Thread Kanugula
Hi, Is there an api to reload SimpleTableModel data like the one qx.ui.table.model.Remote.reloadData()? Thanks. Kanugula. -- View this message in context: http://www.nabble.com/How-to-reload-SimpleTableModel-tp24276611p24276611.html Sent from the qooxdoo-devel mailing list archive at

Re: [qooxdoo-devel] Unable to clear data from Simple Table

2009-06-26 Thread Kanugula
It worked! Thank you Jim. Jim Hunter wrote: > > Don't pass in null if there is no data, pass in an empty array. > this.getTable().getTableModel().setDataAsMapArray([]); > > that will clear the data. > > Jim > > > > On Fri, Jun 26, 2009 at 10:09 A

[qooxdoo-devel] Unable to clear data from Simple Table

2009-06-26 Thread Kanugula
om the server: "+exc); } }; rpc.callAsync(_handler, myMethod, mydata);

Re: [qooxdoo-devel] faster responses to remote table models

2009-06-04 Thread Kanugula
I use Oracle. It is unbeliavable performance when paging or sorting. In milli seconds, i see the data on paging. Qx0.7.2, IE6, Oracle 9i/10g. I also use the remote table with default page limit & offsets. What is your database? Oracle uses something lke rownum and rowid features helped me lot.

Re: [qooxdoo-devel] merging objects

2009-06-02 Thread Kanugula
Thank you. Both of you solutions worked to me!. I thought there will be a javascript api something like obj1.concat(obj2);. Regards. Kanugula. Fink, Andreas wrote: > > Hi, > > Here's a example to run in qooxdoo Playground: > > var obj1 = {"a":"1&q

[qooxdoo-devel] merging objects

2009-06-01 Thread Kanugula
atenate obj1 and obj2? I do not what is there in obj1 and obj2 at runtime? I use Qx 0.7.2. Has nothing to do thi anyway. Thank you. Kanugula. -- View this message in context: http://www.nabble.com/merging-objects-tp23823

Re: [qooxdoo-devel] Java RPC and instances of Java classes

2009-05-13 Thread kanugula
Why do you need a single instance of RemoteService? You should move your state machine away from RPCTest. You can register a Spring bean (which will have only once isntance by default) and handover to it by lloking up the Spring bean. Look at Spring framework. Look at how I am doing? p

Re: [qooxdoo-devel] Re mote table model calls _loadRowCount a lot

2009-01-27 Thread Kanugula
any problems. Thanks. Kanugula. Roman Schmid-2 wrote: > > Hello Devs. > > I implemented a remote table model to use with my RPC backend. It works, > but the _loadRowCount method is called a lot, before some data is being > displayed (about 20 times). That results in a lot of r

Re: [qooxdoo-devel] Editable Table Cell still carries old data

2008-11-04 Thread Kanugula
Thank you Ian. It worked! Thanks. Kanugula. Ian Horst wrote: > > Call method table.stopEditing(), when you click submit. > > Ian Horst > > > Kanugula wrote: >> Hi, >> >> qx 0.7.3, IE6, FF3 >> >> I have an editable Table cell and sub

[qooxdoo-devel] Editable Table Cell still carries old data

2008-11-04 Thread Kanugula
click another row, after the cell value is changed. Sometimes, the user forgets to do that. Is there a better way like simulating a click on a row or a view pane in the submit event handler? Thanks. Kanugula. -- View this message in context: http://www.nabble.com/Editable-Table-Cell-still-carries

Re: [qooxdoo-devel] Is it possible to attach a Table Cell changeValue listener?

2008-10-27 Thread Kanugula
after I move the focus outside of the editable cell. Any ideas how to do that? Thank you. Kanugula. Alexander Back wrote: > > Hi Kanugula, > > Kanugula wrote: >> Hi, >> >> I have an editable column in a Table. I want to capture the changeValue >> event whi

[qooxdoo-devel] Is it possible to attach a Table Cell changeValue listener?

2008-10-24 Thread Kanugula
hanks. Kanugula. -- View this message in context: http://www.nabble.com/Is-it-possible-to-attach-a-Table-Cell-changeValue-listener--tp20157631p20157631.html Sent from the qooxdoo-devel mailing list archive at Nabble.com. -

Re: [qooxdoo-devel] Table - Not to highlight the focused row

2008-10-21 Thread Kanugula
Hi, I do it like this to unhighlight the row when I delete a row in qx 0.7.3. this.getTable().getSelectionModel().clearSelection(); Hope this helps. Kanugula. Amit Rana-2 wrote: > > Hi, > > I want to unhighlight the focused row in my table widget. I did : > > /mytable.

Re: [qooxdoo-devel] Can't move Dialog window outside the viewport

2008-10-17 Thread Kanugula
quot;modal" provdes. Anyway thanks for your suggestion. Kanugula wrote: > > Hi, > > I have a big modal dialog window. My users complain that they can't see > the dialog completely. Either they don't maximize the browser window or > possibly they work from a sma

[qooxdoo-devel] Can't move Dialog window outside the viewport

2008-10-17 Thread Kanugula
pane. Demo browser's example/Window1.html is such example. Will appreciate alternate ways to see the dialog window fully. Thanks. Kanugula. -- View this message in context: http://www.nabble.com/Can%27t-move-Dialog-window-outside-the-viewport-tp20040025p20040025.html Sent from the qooxdoo-dev

Re: [qooxdoo-devel] How to change background color of a table row in 0.7.x

2008-10-14 Thread Kanugula
his._colors.colSelected : this._colors.colNormal); return rowStyle.join(""); } }, /* * DESTRUCTOR ***** */ destruct : funct

[qooxdoo-devel] Tab key to edit table's next row cell value

2008-10-08 Thread Kanugula
et thought the last row tabbing, whcih fires next fetch of remote table data. Any ideas? Thanks. Kanugula. -- View this message in context: http://www.nabble.com/Tab-key-to-edit-table%27s-next-row-cell-value-tp19888561p19888561.html Sent from the qooxdoo-devel mailing list archive at

Re: [qooxdoo-devel] How do we automate testing of Qooxdoo apps?

2008-09-26 Thread Kanugula
Thank you Pradeep. My problem is eaxtly as you specified in the 2nd point. I replaced the user extension by replacing inWindow.qx to inWindow.wrappedJSObject.qx. It works like a charm now. Thanks. Kanugula. Pradeep K R wrote: > > Hi Kanugua, > >Couple of things her

Re: [qooxdoo-devel] How do we automate testing of Qooxdoo apps?

2008-09-25 Thread Kanugula
When running the Simulator in IDE, I see the TextBox only working fine. I added a new command in IDE as Command --> qxClick Target --> qx=thefatbutton When I click the Find button, it gives [error] Element qx=thefatbutton not found Please see the attached screen. Thanks. Kanugua. Hugh Gib

Re: [qooxdoo-devel] How do we automate testing of Qooxdoo apps?

2008-09-24 Thread Kanugula
Never mind. I see it now only after opening the base url in firefox. Then click on Selenium IDE. Thanks. Kanugula. Kanugula wrote: > > FF3 > Qooxdoo 0.7.3 > > I don't see any qx instructions in IDE. > > I am attaching the screens of my IDE settings. > >

Re: [qooxdoo-devel] How do we automate testing of Qooxdoo apps?

2008-09-24 Thread Kanugula
they are pre-built commands. I should see Simulator Commands. For people like me, learning from examples is easy. :)) Thanks. Kanugula. Hugh Gibson wrote: > >> I added t >> user-extensions-qooxdoo.js in Selenium core extensions. I put the >> base url http://localhost/s

Re: [qooxdoo-devel] How do we automate testing of Qooxdoo apps?

2008-09-23 Thread Kanugula
run all button on the IDE, nothing works. Am I doing something wrong? Does it work with RC only? I am still a learner of selenium. Pls bear with me. Thanks. Kanugula. Kanugula wrote: > > Looks like Selenium is the way to go!. Thanks for your suggestion. > > I went thru the seleni

Re: [qooxdoo-devel] How do we automate testing of Qooxdoo apps?

2008-09-23 Thread Kanugula
Looks like Selenium is the way to go!. Thanks for your suggestion. I went thru the selenium documents. The sample simulator application is mostly towards Selenium RC. Is there any sample Qooxdoo application with Selenium Core only? Thanks. Kanugula. Jonathan Rass wrote: > > Hi Ka

Re: [qooxdoo-devel] TableColumnModel question (0.8)

2008-09-22 Thread Kanugula
I have a similar requirements with a simple Table. I hide first N columns using var columnCount = getTableModel().getColumnCount(); for (var i=0; i > On Mon, Sep 22, 2008 at 3:05 PM, Oleksiy Golovko <[EMAIL PROTECTED]> > wrote: > >> Derell, >> >> I'm looking at the RpcExample>RemoteTableModel

Re: [qooxdoo-devel] How do we automate testing of Qooxdoo apps?

2008-09-17 Thread Kanugula
Looks like lot of programming is required using Selenium. Has anybody used successfully any commercial/free Regression Testing tools to do this? or Is it a big limitation to AJAX testing? Thanks. Kanugula. Kanugula wrote: > > Hi, > > How do we automate Qooxdoo applications

Re: [qooxdoo-devel] No value on TextField sometimes return null or ""

2008-08-25 Thread Kanugula
Never mind. I found in the forum. TextField.getComputedValue() Thanks. Kanugula. Kanugula wrote: > > Hello, > > Qooxdoo 0.7.3. > IE6 and FF3 > > If I don't enter any value on a Textfield, I get TextField.getValue() > returning null, which is good. > If I en

[qooxdoo-devel] No value on TextField sometimes return null or ""

2008-08-25 Thread Kanugula
ne value always? Thanks for your time. Thanks. Kanugula. -- View this message in context: http://www.nabble.com/No-value-on-TextField-sometimes-return-null-or-%22%22-tp19146858p19146858.html Sent from the qooxdoo-devel mailing list archiv

Re: [qooxdoo-devel] GroupBox outer line color

2008-08-19 Thread Kanugula
I am really looking to see when this guy will be Back:)) Your solution worked!. Thanks. Kanugula. Alexander Back wrote: > > Hi Kanugula, > > Kanugula wrote: >> I want to set the color to the line cutting through the GroupBox label. >> >> I tried the following,

[qooxdoo-devel] GroupBox outer line color

2008-08-18 Thread Kanugula
n.:)) Can somebody give me hints on how to do that? Thanks. Kanugula. -- View this message in context: http://www.nabble.com/GroupBox-outer-line-color-tp19038873p19038873.html Sent from the qooxdoo-devel mailing list archive at Nabble.com. ---

Re: [qooxdoo-devel] ComboBox re-building problem

2008-08-18 Thread Kanugula
Thank you for correcting me. It worked. Thanks. Kanugula. Kanugula wrote: > > Thanks Jim. > > I tried your solution cbx.execute(). > > I registered "click" event. > cbx.addEventListener("click", function(evt) {alert("1");}); > &g

Re: [qooxdoo-devel] ComboBox re-building problem

2008-08-18 Thread Kanugula
Thanks Jim. I tried your solution cbx.execute(). I registered "click" event. cbx.addEventListener("click", function(evt) {alert("1");}); Until I click it with a mouse, it is not firing "click" event. I want to simulate clicking on it without c

Re: [qooxdoo-devel] ComboBox re-building problem

2008-08-15 Thread Kanugula
Any ideas? As an automated workk-around to fire "click" event on GroupBox, how can fire that event. The following code is not firing the "click" event on GroupBox. What is wrong? cbx.createDispatchEvent(qx.event.type.MouseEvent); Thanks. Kanugula. Kanugula wrote: &

[qooxdoo-devel] ComboBox re-building problem

2008-08-14 Thread Kanugula
aByQueryMethod(), "getData", {"class":"abc.def.gh.Data", }); I re-popualate this ComboBox from different sources based on the user choice. Has anybody faced the issue? Thanks. Kanugula. -- View this message in context: http://www.nabble.com/ComboBox-re-building-problem

Re: [qooxdoo-devel] GroupBox label color

2008-08-14 Thread Kanugula
Hi, At the same time, I am trying to set the Border color for the Group Box also. I tried the following, no success. group1.getLegendObject().setBorder({"color":"blue"}); group1.getLegendObject().setBorder({color:"blue"}); Help please. Thanks. Kanugula. K

Re: [qooxdoo-devel] GroupBox label color

2008-08-08 Thread Kanugula
Thanks Alex. The 1st one worked. group2.getLegendObject().setTextColor("blue"); Thanks. Kanugula. Alexander Back wrote: > > Hi Kanugula, > > Kanugula wrote: >> Hi, >> >> I couldn't find a way to colorize my GroupBox label. >> var group

[qooxdoo-devel] GroupBox label color

2008-08-08 Thread Kanugula
16/apps/preferences.png"); group2.setDimension("auto", "auto"); I want to see my labels 'Product' and 'Item' with blue color text. Is there a way? Thanks. Kanugula. -- View this message in context: http://www.nabble.com/Gro

Re: [qooxdoo-devel] best way to define constants within qooxdoo

2008-08-06 Thread Kanugula
Garbage Collection may struggle to clear the Object from memory because of static references outside. Thanks. Kanugula. Matthew Gregory wrote: > > Hi, > It is also advised that you make your constants all upper case. By doing > this it reminds you, hopefully stopping you accidentl

Re: [qooxdoo-devel] best way to define constants within qooxdoo

2008-08-06 Thread Kanugula
Thanks Hugh. I was not aware of this. I defined all my constants as properties and used getXXX(). Time to replace my code. Thanks. Kanugula. Hugh Gibson wrote: > >> How do you think I can best define my constants? > > Use the "statics" keyword in a class defini

Re: [qooxdoo-devel] problems when setting tableModel at runtime

2008-07-22 Thread kanugula
m tryingto accomplish this at the client side, if possible. May be I should do some trick at the server side to add the color for each row. Thanks. Kanugula. Hugh Gibson wrote: > >> I was thinking about setting cellrenderer at runtime just after my >> remote table is rendered.

Re: [qooxdoo-devel] problems when setting tableModel at runtime

2008-07-18 Thread kanugula
Table Can somebody give me some hints on how to do that?. I have some 15 columns. Thanks. Kanugula. Derrell Lipman wrote: > > On Fri, Mar 14, 2008 at 9:30 AM, Tobias Koller (GERMO GmbH) > <[EMAIL PROTECTED]> wrote: >> I have a problem when I set my tableModel a

Re: [qooxdoo-devel] Search functionality on Table Columns

2008-07-11 Thread kanugula
p, at any time the user can see what filters he applied. Filter at each column end is painful, as the user may not remember what filters he applied. He has to open each field and check it. I will try to hack their code, hopefully if I understand their build version. Thanks. Kanugula. Derrell L

Re: [qooxdoo-devel] Search functionality on Table Columns

2008-07-10 Thread kanugula
Unfortunately, that site is not functioning. Does anybody you know how it looks like from search functionality? Does it have a drop-down at the end of Column? Thanks. Kanugula. Andreas Ecker-2 wrote: > > Hi, > > besides the rather technical > http://demo.qooxdoo.org/curr

Re: [qooxdoo-devel] Search functionality on Table Columns

2008-07-10 Thread kanugula
a table you can use a qx.ui.table.model.Filtered for your > table. You can find an example here : > http://demo.qooxdoo.org/current/demobrowser/#example~Table_4.html > > Guilherme Aiolfi a écrit : >> Hi, >> >> I have no answer for your question, Kanugula. But I

Re: [qooxdoo-devel] Search functionality on Table Columns

2008-07-10 Thread kanugula
n. Thanks. Kanugula. Guilherme Aiolfi wrote: > > Hi, > > I have no answer for your question, Kanugula. But I have more questions > about the subject: > > 1) Filtering/searching is a very common task for tables. Is there any > plugin/project for it? > > 2) If the answ

[qooxdoo-devel] Search functionality on Table Columns

2008-07-10 Thread kanugula
do you have any other kind of dynamic field search functionality you think of where the number of fields are unknown. Thanks. Kanugula. -- View this message in context: http://www.nabble.com/Search-functionality-on-Table-Columns-tp18389298p18389298.html Sent from the qooxdoo-devel mailing list

[qooxdoo-devel] Another Success story!

2008-06-26 Thread kanugula
long time. The users are asking "Search" functionality with a dropdown on each Table Column to filter the data. I don't think I can put a drop down at the end of each column. Thank you for good work guys! So many people replied to my postings and added contribution to my success. Than

Re: [qooxdoo-devel] Static method in property init

2008-06-17 Thread kanugula
Thanks for your reply. I tried the following, but still didn't work. The source/build version gives a warning saying 'require(my.ServerConfig) is auto-detected'. Anyway, this is a minor issue. I re-arranged my code and removed static initializer. Thanks. Kanugula. /* #require(

[qooxdoo-devel] Static method in property init

2008-06-16 Thread kanugula
his.getRpcUrl(). Is it because of the static initializer in init method? Can't we call Static methods in init? Thanks. Kanugula. -- View this message in context: http://www.nabble.com/Static-method-in-property-init-tp17874121p1787412

[qooxdoo-devel] How to identify RemoteTable's backgound pre-fetch request?

2008-06-05 Thread kanugula
ce().setDisplay(true); //} Thanks. Kanugula. -- View this message in context: http://www.nabble.com/How-to-identify-RemoteTable%27s-backgound-pre-fetch-request--tp17677119p17677119.html Sent from the qooxdoo-devel mailing list archiv

Re: [qooxdoo-devel] destruct() question

2008-06-04 Thread kanugula
collected? When I leave the Browser completely by visiting another site, then I see a huge drop in Memory when it calls destruct() on Demo Browser.js. Any ideas? Please share your knowledge. Thanks. Kanugula. kanugula wrote: > > I followed the link and tried the 1st option "Enabl

Re: [qooxdoo-devel] destruct() question

2008-06-04 Thread kanugula
s. By the way, I am talking about our application which is similar to Demo Browser application. Should I turn-on profiling or something else to see the which objects are destroyed? I use FF in source version. Thanks. Kanugula. thron7 wrote: > > kanugula wrote: >> Hi, >>

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

2008-06-04 Thread kanugula
ripts. Tell me if you know any backdoor. Thanks. Kanugula. kanugula wrote: > > Yes. I had to add both in Makefile.demo and Makefile.demobrowser. > > After I removed the extra spaces were in Makefile.demo, it works. > > Thanks. > Kanugula. > > > Alexander Back wro

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

2008-06-03 Thread kanugula
Yes. I had to add both in Makefile.demo and Makefile.demobrowser. After I removed the extra spaces were in Makefile.demo, it works. Thanks. Kanugula. Alexander Back wrote: > > Hi Kanugula, > > did you also added > > APPLICATION_BUILD_LOG_LEVEL = off > > to

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

2008-06-03 Thread kanugula
rning-off logging will improve performance. For anybody interested, just do the following to control logging in build versions APPLICATION_BUILD_LOG_LEVEL = off It is proved. Thanks. Kanugula. Alexander Back wrote: > > Hi Kanugula, > > I've just tried to comprehend your issue. If I set

[qooxdoo-devel] destruct() question

2008-06-02 Thread kanugula
destruct() to complete on last page. A dumb question. Can I put dispose() asynchronously without the risk of same object collision? Thanks. Kanugula. -- View this message in context: http://www.nabble.com/destruct%28%29-question-tp17605645p17605645.html Sent from the qooxdoo-devel

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. T

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

2008-06-02 Thread kanugula
KeepFirstVisibleRowComplete(true) work with specific screen size? IS it possible to avoid absolute positions in the entire application like Demo Browser? And is it a good practice to maximize the window on startup and block resize? Thanks. Kanugula. -- View this message in context: http://www.nabble.com

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

2008-06-02 Thread kanugula
After surfing the forum, most of the replies are setting APPLICATION_BUILD_LOG_LEVEL and qx.log.Logger.ROOT_LOGGER.setMinLevel(); It would be easy to set APPLICATION_BUILD_LOG_LEVEL and it should work. As per your guess, it could be the filter leak. Thanks. Kanugua. Thanks. Kanugula. The Lo

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

2008-05-30 Thread kanugula
APPLICATION_BUILD_LOG_LEVEL setting overrides the entire logging under ROOT_LOGGER inclusive. If not what is that used for? Thanks. Kanugula. -- View this message in context: http://www.nabble.com/Can%27t-turn-off-qooxdoo-logging-in-build-version-tp17565686p17565686.html Sent from the qooxdoo-devel mailing

[qooxdoo-devel] Visible empty white row when the Table is empty

2008-05-29 Thread kanugula
advantage of it by filling something like "No Data found" which will be user friendly instead of using the status bar. So, "How can I get rid ot it?" or "Fill 'No Data found' message in it?". Any thoughts are appreciated. Thank you. Kanugula.

Re: [qooxdoo-devel] How to access Demo Browser resource images in Atom_1.html?

2008-05-20 Thread kanugula
resourcePath); } else { resourcePath = "../../resource/demobrowser"; qx.io.Alias.getInstance().add("demobrowser", resourcePath); } o = new qx.ui.basic.Image("demobrowser/image/FsmMiceMaze.png"); Thank you. Kanugula. Derrell Lipman wrote: > > On Mon,

[qooxdoo-devel] Blocking user input during RPC call

2008-05-19 Thread kanugula
indow for RPC progress status. Your suggestion is appeciated. Thanks. Kanugula. -- View this message in context: http://www.nabble.com/Blocking-user-input-during-RPC-call-tp17322682p17322682.html Sent from the qooxdoo-devel mailing list archive at Nabbl

[qooxdoo-devel] How to access Demo Browser resource images in Atom_1.html?

2008-05-19 Thread kanugula
yout.HorizontalBoxLayout(); myLayout.add(myIcon); myLayout.add(message ); var d = qx.ui.core.ClientDocument.getInstance(); d.add(myLayout); But I don't see the icon dislpayed. Is setting "demobrowser" for custom resources (i.e., non-qooxdoo resource images) avaibale in HTML pages too lik

Re: [qooxdoo-devel] Accessing javascript function in Qooxdoo static member

2008-05-16 Thread kanugula
design is exactly like Demo Browser design. Derell, I like your design too!. Thank you. Kanugula. My application design is like Demo Browser design. Derrell Lipman wrote: > > On Fri, May 16, 2008 at 5:33 PM, kanugula <[EMAIL PROTECTED]> > wrote: > >> >> I am havi

[qooxdoo-devel] Accessing javascript function in Qooxdoo static member

2008-05-16 Thread kanugula
"); } I am able to call the same function from DemoBrowser.js So what is the difference? Can't I access it from static members? Thanks. Kanugula. -- View this message in context: http://www.nabble.com/Accessing-javascript-function-in-Qooxdoo-static-member-tp17284645

Re: [qooxdoo-devel] TextField focus bug

2008-04-28 Thread kanugula
I am getting the same problem in IE6 and FF. Is this a knwoen bug guys? Thanks. Kanugula. vbaspcppguy wrote: > > When a text field is disabled and then enabled the carat is gone but the > box still works. > -- View this message in context: http://www.nabble.com/TextFie

Re: [qooxdoo-devel] TextField focus bug

2008-04-28 Thread kanugula
I am seeing the same behaviour in both IE6 and FF. Is it a known bug? Thanks. Kanugula. vbaspcppguy wrote: > > When a text field is disabled and then enabled the carat is gone but the > box still works. > -- View this message in context: http://www.nabble.com/TextFie

Re: [qooxdoo-devel] How to add subfolder under example in Demo Browser left tree?

2008-04-21 Thread kanugula
it possible to give aboslute path from the web server root? Thanks. Kanugula. demo.js == if(qxsettings["qx.resourceUri"]==undefined)qxsettings["qx.resourceUri"]="../../resource/qx"; if(qxsettings["demo.resourceUri"]==undefined)qxsettings["demo.

Re: [qooxdoo-devel] How to add subfolder under example in Demo Browser left tree?

2008-04-18 Thread kanugula
it is a general javascript's eval() behaviour. I have an an extra {} inside folder []. It should be demodata.js = [{classname:"examples",folder:[ {nr:"1",title:"Atoms",name:"Atoms",desc:"Test", file:[ {nr:"2",title:&q

Re: [qooxdoo-devel] How to add subfolder under example in Demo Browser left tree?

2008-04-18 Thread kanugula
}, this); var loadStart = new Date(); req.send(); }, Can somebody point the error please? Firebug complains the following error. invalid property id [Break on this error] {nr:"1",title:"Atoms",name:"Atoms",desc:"Test", file:[\n D

[qooxdoo-devel] When is rpc.addEventListener("failed", myFunction) called?

2008-04-16 Thread kanugula
ispatch to "failed" event? rpc.addEventListener("failed", function(evt) { alert(evt); //I couldn't find any test case for failed event },this); When my remote service is down, I get "timeout" event, which is good! Thanks. Kanugula. -- View this message in context: ht

Re: [qooxdoo-devel] Re moteTable fires _loadRowCount() multiple times for very 1st request

2008-04-14 Thread kanugula
kes 2 minutes for 100,000 rows, it still works great! I hope this will help somebody if they have same problem. Thanks. Kanugula. Derrell Lipman wrote: > > On Fri, Apr 11, 2008 at 3:57 PM, kanugula <[EMAIL PROTECTED]> > wrote: >> >> I have seen the RemoteTable fire

Re: [qooxdoo-devel] RmoteTable fires _loadRowCount() multiple times for very 1st request

2008-04-11 Thread kanugula
() indefinite times, when the rpc timeout 30 secs is specified?. In my case I get rowCount() in 5 secs < 30 secs. What is the use of Rpc Timeout? Can somebody explain this please? Thanks. Kanugula. kanugula wrote: > > Hello, > > qooxdoo 0.7.3 > IE 6 and FF > > I have se

Re: [qooxdoo-devel] RmoteTable fires _loadRowCount() multiple times for very 1st request

2008-04-11 Thread kanugula
lumns. If string gives better performance, I can convert them to string if I know how to do that. Thanks. Kanugula. kanugula wrote: > > Hello, > > qooxdoo 0.7.3 > IE 6 and FF > > I have seen the RemoteTable fires _loadRowCount() multiple times (ranging > from 2 - 30

[qooxdoo-devel] RmoteTable fires _loadRowCount() multiple times for very 1st request

2008-04-11 Thread kanugula
lease discard any syntax errors. Is my code correct? Has anybody seen this kind of problem? I dont get any Rpc timeout or any other error. Thanks. Kanugula. -- View this message in context: http://www.nabble.com/RmoteTable-fires-_loadRowCount%28%2

[qooxdoo-devel] TableModel.setData without column id

2008-04-11 Thread kanugula
". It doesn't populate the rows. I don't see any error in FireBug. Can somebody tell me the error please? Thanks. Kanugula. -- View this message in context: http://www.nabble.com/TableModel.setData-without-c

Re: [qooxdoo-devel] Clearing Qooxdoo Page cache on Logout

2008-04-10 Thread kanugula
I agree with you Hugh. We are doing that only at Login, to re-load the security roles to control the Demo Browser tree nodes. We simply tell the user to re-login to get new access. Thank you. Kanugula. Hugh Gibson wrote: > >> The best way to clear the cache is >> <% Res

Re: [qooxdoo-devel] Clearing Qooxdoo Page cache on Logout

2008-04-08 Thread kanugula
Thank you Andreas. These links helped me to fix some of my problems. The best way to clear the cache is <% Response.CacheControl = "no-cache" %> <% Response.AddHeader "Pragma", "no-cache" %> <% Response.Expires = -1 %> Thanks. Kanugula. Andrea

Re: [qooxdoo-devel] Clearing Qooxdoo Page cache on Logout

2008-04-07 Thread kanugula
a script is modified at the server, how do we get new version of it)? Thank you. Kanugula. kanugula wrote: > > Hello, > > I put a Logout button at the top of Demo Browser. I want to clear the page > cache so I can avoid problems occuring due to IE Back button. > > Qooxdo

Re: [qooxdoo-devel] Clearing Qooxdoo Page cache on Logout

2008-04-07 Thread kanugula
ionid')); qx.io.local.CookieApi.del('jsessionid'); window.location.href='logout.jsp'; } I don't see 'jsessionid' in the cookie. How do I delete/access the cookie using qooxdoo API. What are the cookies I should delete? Thank you. Kanugula. Hugh Gibson wrote: &g

Re: [qooxdoo-devel] What is wrong with my second IFrame?

2008-04-04 Thread kanugula
Thank you Jonathan. Yout solution worked!. Thanks. Kanugula. kanugula wrote: > > Experts, > > I am dangling my head to fix my 2nd IFrame issue. > > I have two tabs. One to serach and other to buy. My search tab works > greate and fills the IFrame. When I click 2nd T

Re: [qooxdoo-devel] What is wrong with my second IFrame?

2008-04-03 Thread kanugula
I see the same behaviour in IE and FF. I have a feeling that this.setSource() and this.dispatchEvent() may be targeting to a wrong IFrame. kanugula wrote: > > Experts, > > I am dangling my head to fix my 2nd IFrame issue. > > I have two tabs. One to serach and other to

[qooxdoo-devel] What is wrong with my second IFrame?

2008-04-03 Thread kanugula
Experts, I am dangling my head to fix my 2nd IFrame issue. I have two tabs. One to serach and other to buy. My search tab works greate and fills the IFrame. When I click 2nd Tab, it fetched remote web site, but it doesn't fill my Iframe. Can somebody poibnt the error please? I suspect, this.set

Re: [qooxdoo-devel] Can I pass any parameter in Qooxdoo build to identify Prod or Dev?

2008-04-02 Thread kanugula
Thanks. qx.debug variant check works to me. Thanks. Kanugula. kanugula wrote: > > Hello, > > I frequently have to modify some classes to make Production Build. > > Is there a way to pass parameter or any other solution in your mind at > build time to tell us that it

Re: [qooxdoo-devel] How to access DemoBrowser instance inside Atom_1.html?

2008-04-01 Thread kanugula
Yes. You are right. That works. Thanks for your reply. I relalized it using Firebug. Y kanugula wrote: > > Hi, > > My application is built on Demo Browser. For simplicity, I am using Demo > Browser terminalogy. > > I want to pass the Demo Browser Tree node name "

[qooxdoo-devel] How to access DemoBrowser instance inside Atom_1.html?

2008-04-01 Thread kanugula
if there is a way to access demobrowser.DemoBrowser instance inside Atom_1.html? I tried something like using parent. parent.demobrowser.DemoBrowser.getSelectedNodeName(). It doesn't work. Because it is not an instance. Thank you. Kanugula. -- View this message in context: http://www.nabble.

[qooxdoo-devel] How to access field 'class' in qx.io.remote.Rpc handler exception 'exc'?

2008-03-31 Thread kanugula
hod, data); Is there an alternate way to access it other than from exc.message?. I know exc.message also embeds exc.class, but somehow my Error Dialog window doesn't like exc.message , because of some bad characters or it is too big to accommodate. Thanks. Kanugula. -- View this mess

Re: [qooxdoo-devel] Demobrowser design

2008-03-31 Thread kanugula
Many thanks for the clarification. Now I will have have to code for Object cleanup (a.k.a destruct()); Thanks. Kanugula. kanugula wrote: > > Hi, > > We developed an application with similar to Demo Browser. > For simplicity, I am referring Demo Browser terminology. &

Re: [qooxdoo-devel] Demobrowser design

2008-03-31 Thread kanugula
Could you clarify this? If I jump from Atom_1.html to Atom_2.html, are the Atom_1.html objects still stored in Page Cache? Thanks. Kanugula. >Refreshing the page usually refreshes all source files (if necessary), but unloading objects is done >whenever the old page is left. kanugula

[qooxdoo-devel] Clearing Qooxdoo Page cache on Logout

2008-03-31 Thread kanugula
; I stll see my Page Cache when the IE Back button is pressed. Do you how to clear the cache? What will happen if IE Back button is clicked after the cache is cleared? Thank you. Kanugula. Thanks. Kanugula. -- View this message in context: http://www.nabble.com/Clearing-Qooxdoo-Page

Re: [qooxdoo-devel] Can I pass any parameter in Qooxdoo build to identify Prod or Dev?

2008-03-29 Thread kanugula
I fixed it. I have to add the variants in makefile.demo also. Atom1.html uses demo.js. kanugula wrote: > > Thank you. > > My application is built on Demo Browser model. > In makefile.demobrowser, I defined variant as follows. > # source version > APPLICATION_ADDI

[qooxdoo-devel] Demobrowser design

2008-03-29 Thread kanugula
browser cache. So need to unload the objects. 2) Since Atom1.html downloads demo.js everytime, when the user clicks on it, is there a way that we can move it to the parent and access it from there? It increases the performance. Thanks. Kanugula. -- View this message in context: http

Re: [qooxdoo-devel] Can I pass any parameter in Qooxdoo build to identify Prod or Dev?

2008-03-29 Thread kanugula
uot;getRowCount", "getData", this); } In Atom1.html, the FireBug shows the following error. Error: Variant "application.mode" is not defined. Can somebody help me on this? Thanks. Kanugula. kanugula wrote: > > Hello, > > I frequently have to modify

[qooxdoo-devel] Can I pass any parameter in Qooxdoo build to identify Prod or Dev?

2008-03-28 Thread kanugula
it is PROD else it is DEV Any other solution is appreciated. Than ks. Kanugula. -- View this message in context: http://www.nabble.com/Can-I-pass-any-parameter-in-Qooxdoo-build-to-identify-Prod-or-Dev--tp16349822p16349822.html S

[qooxdoo-devel] Dynamic Resize of Dialog Window to show error

2008-03-28 Thread kanugula
Hello, I prepared a Dialog Window to show the Status of the user operation. If success, I show "Data updated successfully!" and it is fine. In case of an error, I need to show full discription of the error which is variable length. My current code either truncates and dislocates the components..

[qooxdoo-devel] Re mote Table Sort Column Click doesn't point to 1st Page

2008-03-28 Thread kanugula
Count, sortColumn, this.isSortAscending()); } How do I detect "Sort Column Click"? What object should I check or override? Thanks. Kanugula. -- View this message in context: http://www.nabble.com/Remote-Table-Sort-Column-Click-doesn%27t-point-to-1st-Page-tp16349693p16349693.html S

Re: [qooxdoo-devel] dispatchEvent firing but evt.getValue() not getting data

2008-03-27 Thread kanugula
removed dispacthEvent and replaces with textField.setValue(); Thank you. Kanugula. Instead of Dispatch Event Fink, Andreas wrote: > > Hi Kanugula, > > the "changeValue" event is fired automaticly if the value of the textfield > changes or if the focus left, after the users

Re: [qooxdoo-devel] How to convert Array to Map literal when passing to RPC Jav

2008-03-27 Thread kanugula
ay to do validation when you click Submit, I prefer the other way where enable Submit button only when ALL the data is entered. For that I iterate thur the Map on every required Field to set Submit button enable/disable? Thank you. Kanugula. Hugh Gibson wrote: > >> If I

[qooxdoo-devel] How to allow numbers only on Text Field

2008-03-26 Thread kanugula
ata at all. They let you type numbers only. I don't want to give a second chance to validate it and alert the user that the data is bad. I want to stop upfont. How can I achieve it using Qooxdoo? Thanks. Kanugula. -- View this message in context: http://www.nabble.com/How-to-allow-numbers-onl

  1   2   >