Re: [qooxdoo-devel] Widgets not moving during animated resize

2015-12-14 Thread csfahey
Thanks. I took what you suggested and modified slightly to have it work the same. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Widgets-not-moving-during-animated-resize-tp7587790p7587850.html Sent from the qooxdoo mailing list archive at Nabble.com. --

[qooxdoo-devel] Widgets not moving during animated resize

2015-11-28 Thread csfahey
I have a problem with animation resizing over top of sibling widgets. I want to have a couple widgets next to each other in a collapsed state and when the mouse moves over one, it expands by resizing using the animation routines which should push the siblings over. When it loses focus, the widget

Re: [qooxdoo-devel] Widgets not moving during animated resize

2015-11-28 Thread csfahey
Sorry here is the working link to the playground sample: http://tinyurl.com/jm4e3dq -- View this message in context: http://qooxdoo.678.n2.nabble.com/Widgets-not-moving-during-animated-resize-tp7587790p7587791.html Sent from the qooxdoo mailing list archive at Nabble.com. --

Re: [qooxdoo-devel] Weird Mobile App Locale String

2014-12-18 Thread csfahey
I didn't know what to do to get around this bug using Qooxdoo so this is what I am using as a solution: var locale = drmobile.StringUtil.getLocaleDetails( qx.locale.Manager.getInstance().getLocale() ); if( typeof locale.label == 'undefined' ) { var lang = window.navigator.language;

Re: [qooxdoo-devel] Weird Mobile App Locale String

2014-12-17 Thread csfahey
I ran the Playground app on my mobile phone as well and in the test area made the call to: qx.locale.Manager.getInstance().getLocale() and had the resulting string go to an alert box. It returns the same code as my app which means that it is not inherent of my app but rather Android/Chrome or Qoox

Re: [qooxdoo-devel] Weird Mobile App Locale String

2014-12-17 Thread csfahey
Oh and one more interesting thing, on my phone, a Motorola XT1030 Mini, I get "u5_24" every time but on a Samsung Galaxy 5, I get "sm_g9" every time. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Weird-Mobile-App-Locale-String-tp7586485p7586490.html Sent from the qooxdoo mai

Re: [qooxdoo-devel] Weird Mobile App Locale String

2014-12-17 Thread csfahey
Both under Chrome on the desktop as well as on the mobile device: Object {C: Object, en: Object, en_AU: Object, en_CA: Object, en_GB: Object…} C: Object en: Object en_AU: Object en_CA: Object en_GB: Object es: Object es_US: Object fr: Object fr_CA: Object just as you pointed out. All objects see

[qooxdoo-devel] Weird Mobile App Locale String

2014-12-16 Thread csfahey
I have written a mobile app that has locale support built in. I have tested it out on a desktop browser to ensure it runs properly. However, while testing the mobile app out on an Android device under Chrome, I am getting a strange value coming from the call to get the locale string: qx.locale.

[qooxdoo-devel] CKEditor Adapter

2013-12-16 Thread csfahey
I have written a small adapter for CKEditor version 4.6.1 if anyone needs it. CKEditor.js -- View this message in context: http://qooxdoo.678.n2.nabble.com/CKEditor-Adapter-tp7585082.html Sent from the qooxdoo mailing list archive

Re: [qooxdoo-devel] AutoScroll Issue

2013-12-11 Thread csfahey
Ahah! A partial solution. It may cripple other behavior but the key to preventing the scroll from happening is to set "focusable" to false. I guess it is an acceptable tradeoff. If anyone has any other suggestions that would keep some of the behavior lost by setting focusable to false, please

Re: [qooxdoo-devel] AutoScroll Issue

2013-12-11 Thread csfahey
A different example of the same behavior. Run this link under IE10+. Under version 3.0, the behavior is as described but under 2.0, the automatic scroll into view doesn't happen which is what I want. http://tinyurl.com/mt2ave8 -- View this message in context: http://qooxdoo.678.n2.nabble.c

Re: [qooxdoo-devel] AutoScroll Issue

2013-12-11 Thread csfahey
For those with challenged links, here is the code. Surprisingly, if I change the playground version from current to 2.0, it can be done. Something changed. Again, under version 3.0, try to select row 100. *** // Create the initial

[qooxdoo-devel] AutoScroll Issue

2013-12-10 Thread csfahey
This is an unanswered question that has been posted before but not as abbreviated. Using only IE10+, can anyone select row 100 from the table in the following example? http://tinyurl.com/olac3sz Can anyone suggest a way to select row 100? This is a browser/IE issue when handling a DIV elemen

[qooxdoo-devel] Weird Click Behavior

2013-12-06 Thread csfahey
I have this code in a standalone single page application: var search = new qx.ui.basic.Label( this.tr(" Search <#> ") ).set( { rich : true } ); this.add( search ); search.addListener( "click", function(){ alert("onclick"); }, this); // search.addListener( "mousedown", function(){ alert("onmoused

Re: [qooxdoo-devel] Part dependency help

2013-12-02 Thread csfahey
Thanks. That helped quite a bit to get past the generate source stage. Now when I run it I get an error: "Incomplete parameters". I am not sure what is going on. I set my debugger to break in the main application class but it doesn't seem to even create the class. Any thoughts? Here is the b

[qooxdoo-devel] Part dependency help

2013-11-27 Thread csfahey
My application has grown large enough that it warrants breaking it up to help load speed. Needless to say, I am trying to build it into parts. The problem I seem to be having is that I have a dependency problem and don't seem to understand parts dependency well enough to know where to look for th

Re: [qooxdoo-devel] Localization Help

2013-06-24 Thread csfahey
Awesome. Yes it does. I was just confirming what I thought you said. Thanks immensely for your help!! I am off to finish my translation now which should take far fewer hours! -- View this message in context: http://qooxdoo.678.n2.nabble.com/Localization-Help-tp7583926p7583938.html Sent from

Re: [qooxdoo-devel] Localization Help

2013-06-24 Thread csfahey
Wait!Are you saying that if I use a word such as "check" in the english version "en.po" file but require a "cheque" for CA and GB that I only need to provide a translation for just those keys and not the entire set of words and phrases from the application? If so, that would be awesome and I w

Re: [qooxdoo-devel] Localization Help

2013-06-24 Thread csfahey
Thank you. Since my primary translation is U.S. English and my primary audience is the same, then it would make sense that I wouldn't need to supply a "en_US.po" file since it defaults to this in the same way that French from France would only need "fr.po" and that "fr_FR.po" would be redundant.

[qooxdoo-devel] Localization Help

2013-06-24 Thread csfahey
I am trying to specify the language and locale that my application is to support using "json.config": "let" : { "LOCALES" : [ "en_AU", "en_CA", "en_GB", "en_US", "es_US", "fr_CA" ], } However, after running "generate.py translation" to obtain the .po files, translating them

[qooxdoo-devel] Setting model with ComboBox/Form/List controller

2013-06-03 Thread csfahey
I am hoping someone can lend me a hand. I have 3 form elements, a ComboBox, a SelectBox and a ComboBox. Each uses a qx.data.controller.List for the list model. I have also tied the controls into a Form and a Form controller. The values of each control are loosely tied together using events but

Re: [qooxdoo-devel] Table checkbox focus not caught (bug?)

2012-09-11 Thread csfahey
In looking at the source code for qx.ui.table.celleditor.CheckBox in function createCellEditor(), it appears that the solution is the addition of a blur listener on the form checkbox that is created like so: checkbox.addListener( "blur", function(e) { this.tab

Re: [qooxdoo-devel] Clear a tableModel ?

2012-09-11 Thread csfahey
// Here is how I do it. Given. var model = new qx.ui.table.model.Simple( ); var table = new qx.ui.table.Table( model ); // This clears it. model.removeRows( 0, model.getRowCount() ); -- View this message in context: http://qooxdoo.678.n2.nabble.com/Clear-a-tableModel-tp7581283p7581321.html Se

Re: [qooxdoo-devel] Table Row Strike-through

2012-09-11 Thread csfahey
Glad I could help someone out. I looked through the code and played with modifying the style of the row but the problem turned out to be how the table was rendered in the browser and the layers upon layers. You could add the style to the row but as soon as you touched the table, it went away sinc

Re: [qooxdoo-devel] Moving Dialog qooxdoo contrib project to github

2012-08-05 Thread csfahey
Thanks. It is working now. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Moving-Dialog-qooxdoo-contrib-project-to-github-tp7580882p7580897.html Sent from the qooxdoo mailing list archive at Nabble.com. ---

Re: [qooxdoo-devel] Moving Dialog qooxdoo contrib project to github

2012-08-04 Thread csfahey
I am using your Dialog class which is nice but now that you have moved it my build is broken. Any idea how to fix it? "jobs" : { // Uncomment the following entry to add a contrib or library to your // project; make sure to adapt the path to the Manifest.json; if you are // using a

Re: [qooxdoo-devel] Table Row Strike-through

2012-07-17 Thread csfahey
Never got an answer but came up with something that works at the cell level. Hopefully someone can use this in the future. var table = ... var tcm = table.getTableColumnModel(); // I need to do replacement strings at the cell level as well. var factory = new qx.ui.table.cellrenderer.Dynamic(fact

[qooxdoo-devel] Table Row Strike-through

2012-07-13 Thread csfahey
I am trying to show if a record has been deleted or not by displaying it with a line-through the entire row. Is there a way to do this with rowrenderer? I have experimented with a table in the playground but none of the CSS styles work. How about cellrenderer? It would seem that the line would

[qooxdoo-devel] Retrieve Form items from internal group

2012-07-04 Thread csfahey
Is there any way to access the items already added to a form? I am trying to reduce the clutter in my code and since the items were added directly to the form when created, it would be easier to track them by the item they are associated with. Form.getGroups() is in the code for Form but not avai

Re: [qooxdoo-devel] Excel like TabView

2012-06-15 Thread csfahey
Perfect! I new it was something simple. Thanks for your help. I hope others can use this snippet of code as well. I found this seems to be the modern approach to adding and editing tabs. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Excel-like-TabView-tp7580343p7580347

Re: [qooxdoo-devel] Excel like TabView

2012-06-15 Thread csfahey
Sorry but you misunderstand. The last tab is the tab to click on to get a new tab. It is not supposed to have a pane attached to it that is visible or at the least not supposed to show that pane. I want to intercept the click on that tab, then make a decision on what to do. It is at this point,

Re: [qooxdoo-devel] Can this be improved? (dependent SelectBox and Form)

2011-08-29 Thread csfahey
Thanks for the replies to my questions. I wish it were that simple, but your example broke the initial selection which was done using the form model. I had originally had something like what you came up with but found that the form model selection breaks. So at this point, it was a case of combi