Re: [qooxdoo-devel] Keydown event repeating

2013-04-23 Thread Michal Dvořák
Thanks for pointing that out, i completely missed that. I was going thru keyboard handler without reading Widget docs. But that means it does not work as it is supposed to in all browsers but IE and FF under windows, as stated in the first mail. Under linux, the keydown event is fired repeatedly un

Re: [qooxdoo-devel] qooxdoo mobile: resize carousel to height of a container

2013-04-23 Thread Oleksandr Shneyder
Hello Christopher, I have already tried to set a height by CSS and it doesn't work neither. I think it is not possible at all for carousel. I found this in documentation: Mixin MResize This mixin resizes the container element to the height of the parent element. Use this when the height can not

Re: [qooxdoo-devel] Skipping unresolvable exclude entry

2013-04-23 Thread miguelmello
>1. My question was which job triggers the console messages you find >annoying. Messages are triggered at "Executing: source-all::source-all-script". No messages arise at "Executing: build::build-script". >2. You use a parts configuration for the 'build' job, but not for >'source'. This will not

Re: [qooxdoo-devel] Updating multiple clients with QSO

2013-04-23 Thread John Spackman
QSO has moved to github at [1] - I was sure I changed that listing but I guess not. [1] https://github.com/johnspackman/qx-serverobjects Regards John On 22/04/2013 20:31, "Wordman" wrote: >If you look at the head of the trunk listed at >http://qooxdoo.org/contrib/project#serverobjects, handle

Re: [qooxdoo-devel] Using the remote table model and Xhr

2013-04-23 Thread thron7
+1 On 04/23/2013 02:39 PM, Derrell Lipman wrote: I think Thomas was suggesting that you open a bug for the fact that there's no tutorial or explanation of how to use the new XHR class for this purpose. If the one currently documented is deprecated, a new explanation needs to be written for the

Re: [qooxdoo-devel] Skipping unresolvable exclude entry

2013-04-23 Thread thron7
2 things: 1. My question was which job triggers the console messages you find annoying. 2. You use a parts configuration for the 'build' job, but not for 'source'. This will not work. Parts require you to instrument your code with appropriate qx.io.PartLoader.require() calls, and you wouldn't

Re: [qooxdoo-devel] Skipping unresolvable exclude entry

2013-04-23 Thread miguelmello
I see. Well, the config.json of myapp is the following: { "name": "myapp", "include" : [ { "path" : "${QOOXDOO_PATH}/tool/data/config/application.json" } ], "export" : [ "api", "api-data", "build", "clean", "distclean", "fix", "info", "

Re: [qooxdoo-devel] Updating multiple clients with QSO

2013-04-23 Thread Wordman
Ah ha! Looking back in the archives reveals the answer (posted before I joined the list). Source moved to git. Will give the code from there a try. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Updating-multiple-clients-with-QSO-tp7583306p7583339.html Sent from the qooxdoo m

Re: [qooxdoo-devel] Using the remote table model and Xhr

2013-04-23 Thread miguelmello
Okay, Bug 7356 - Using the remote table model and Xhr, successfully created at Qooxdoo Bugzilla. Hope this helps everyone. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Using-the-remote-table-model-and-Xhr-tp7583322p7583337.html Sent from the qooxdoo mailing list archive at

Re: [qooxdoo-devel] Bug in Table with scrollbars?

2013-04-23 Thread Peter Schneider
Hi there, is there already a bug/issue for this one? 'cause I want to 'vote' for this. This issue pops up on my side also. It's very annoying when you try to trace down another bug ;) Peter On 4/17/2013 7:42 AM Tobias Koller (GERMO GmbH) wrote: > I forgot to write that I only get this error when

Re: [qooxdoo-devel] Using the remote table model and Xhr

2013-04-23 Thread Derrell Lipman
I think Thomas was suggesting that you open a bug for the fact that there's no tutorial or explanation of how to use the new XHR class for this purpose. If the one currently documented is deprecated, a new explanation needs to be written for the manual. Derrell On Tue, Apr 23, 2013 at 8:34 AM, mi

Re: [qooxdoo-devel] Using the remote table model and Xhr

2013-04-23 Thread miguelmello
Humm! Don't see a huge need to open a bug for that. Indeed, I have fixed the problem with the following implementation: qx.Class.define('myapp.system.CostumerRemoteTable', { extend: qx.ui.table.model.Remote, construct: function() { this.base(arguments); this.setColumns( ['ID','No

Re: [qooxdoo-devel] geolocation maps in qooxdoo

2013-04-23 Thread Werner Thie
On 4/23/13 11:44 AM, Fritz Zaucker wrote: > Raphael had serious memory leaks in the past. Quite possible that this is > fixed now. > None observed so far, Fritz! Werner -- Try New Relic Now & We'll Send You this Cool Sh

Re: [qooxdoo-devel] SAme Theme and different look?

2013-04-23 Thread smisonli...@googlemail.com
Hello, i use 1.6. Is their a bigger update needed? > there was a bug in qooxdoo's CSS linear background implementation, but > it was fixed with 2.0.2. If you're using an older framework version, you > should migrate to the latest (patch) release. -

Re: [qooxdoo-devel] geolocation maps in qooxdoo

2013-04-23 Thread Fritz Zaucker
Raphael had serious memory leaks in the past. Quite possible that this is fixed now. Cheers, Fritz On Tue, 23 Apr 2013, franck34 wrote: > Need to choose between > http://raphaeljs.com/world/ (simple, enought) and > http://kartograph.org/showcase/projections/#ortho > > Both don't need to make out

Re: [qooxdoo-devel] geolocation maps in qooxdoo

2013-04-23 Thread franck34
Need to choose between http://raphaeljs.com/world/ (simple, enought) and http://kartograph.org/showcase/projections/#ortho Both don't need to make outside request for loading data (my constraint) The last one i found is http://d3js.org/ http://mbostock.github.io/d3/talk/20111018/azimuthal.html T

Re: [qooxdoo-devel] geolocation maps in qooxdoo

2013-04-23 Thread Werner Thie
Hi, just finished some stuff with Raphael in qooxdoo, a world map example is included on raphaeljs.com Werner On 4/23/13 10:58 AM, Ana Rita Sousa wrote: > Hi, > > I have integrated OpenLayers with Qooxdoo and it rocks! The OpenLayers > is a powerful javascript mapping library, but there are an

Re: [qooxdoo-devel] geolocation maps in qooxdoo

2013-04-23 Thread Ana Rita Sousa
Hi, I have integrated OpenLayers with Qooxdoo and it rocks! The OpenLayers is a powerful javascript mapping library, but there are another options that could be more suitable for you. Take a look: http://gis.stackexchange.com/questions/8032/comparison-of-javascript-mapping-libraries Cheers, Ana

Re: [qooxdoo-devel] SAme Theme and different look?

2013-04-23 Thread Richard Sternagel
Hi, Daniel already clarified this. Note that there is also a stackoverflow question answering this: http://stackoverflow.com/questions/14768834/qooxdoo-firefox-renders-indigo-theme-gradient-in-270-degree/14771109 Regards Richard Am 23.04.13 09:45, schrieb Daniel Wagner: > Hi, > > there was a b

Re: [qooxdoo-devel] SAme Theme and different look?

2013-04-23 Thread Daniel Wagner
Hi, there was a bug in qooxdoo's CSS linear background implementation, but it was fixed with 2.0.2. If you're using an older framework version, you should migrate to the latest (patch) release. Regards, Daniel On 23.04.2013 09:22, smisonli...@googlemail.com wrote: > Hello, > > i have some prob

Re: [qooxdoo-devel] Using the remote table model and Xhr

2013-04-23 Thread thron7
On 04/23/2013 07:13 AM, miguelmello wrote: > Hi fellows, > > In Qooxdoo 2.1 Manual, precisely at 7.5 Specific Widget Communication, 7.5.1 > Using the remote table model, show us how to use Remote Table Model using > qx.io.remote.Request. Well, in the API VIEWER, is advised the following: > > Note:

Re: [qooxdoo-devel] Skipping unresolvable exclude entry

2013-04-23 Thread thron7
On 04/23/2013 07:12 AM, miguelmello wrote: > Hi Fellows, > > I wonder how to get hide from the following generate.py output: > Scanning libraries > - Warning: Skipping unresolvable exclude entry: "myapp.test.*" > - Warning: Skipping unresolvable exclude entry: "myapp.simulation.*" > > I do no

[qooxdoo-devel] SAme Theme and different look?

2013-04-23 Thread smisonli...@googlemail.com
Hello, i have some problems . See the screenshots below. the first is the output under - Google Chrome - firefox the second is the look under - Internet explorer - Safari - Iron (why ever, its the same like chrome?!) - opera The second screen is the right, i think. i use modern. What can be