Re: [qooxdoo-devel] Assertions / assertion errors in build version

2015-06-30 Thread Alexander Steitz
Hi Joseph, with the following snippet in your "config.json" you can overwrite the default value for the environment key "qx.debug" for your build version. --snip-- "build-script" : { "environment": { "qx.debug": true } } --snip-- With the next run of "./generate.py build" your ap

Re: [qooxdoo-devel] Why Qx-Destkop is not themeable using LESS?

2015-04-24 Thread Alexander Steitz
Hi Phyo, qx desktop uses its own appearance layer (=theming) which is tailored for the desktop widgets. Plus it was developed a good time ago before LESS and others were available. Regards, Alex Von: Phyo Arkar [mailto:phyo.arkarl...@gmail.com] Gesendet: Freitag, 24. April 2015 11:55 An: qoo

Re: [qooxdoo-devel] keyInput event on alt-/ only in FireFox?

2013-08-16 Thread Alexander Steitz
Hi Ken, the key abstraction layer is trying to getting things as conform as possible for all browsers. However, when it comes to the modifiers and key events being fired there might be issues concerning the event order and the infos you get across different browsers. One last idea I have in mi

Re: [qooxdoo-devel] changeValue event in htmlArea?

2013-02-27 Thread Alexander Steitz
-- qx.bom.Event.addNativeListener(bodyElement, "paste", function(e) { console.debug(e); }); --snip- I tested it for Firefox and IE7. Regards, Alex From: Alexei Vinidiktov [mailto:alexei.vinidik...@gmail.com] Sent: Wednesday, February 27, 2013 2:49 AM To: Alexander Steitz Subject: Re: [qooxdo

Re: [qooxdoo-devel] changeValue event in htmlArea?

2013-02-27 Thread Alexander Steitz
-- qx.bom.Event.addNativeListener(bodyElement, "paste", function(e) { console.debug(e); }); --snip- I tested it for Firefox and IE7. Regards, Alex From: Alexei Vinidiktov [mailto:alexei.vinidik...@gmail.com] Sent: Wednesday, February 27, 2013 2:49 AM To: Alexander Steitz Subject: Re: [qooxdo

Re: [qooxdoo-devel] Application-wide native overflow & native scrolling?

2013-01-10 Thread Alexander Steitz
Hi Andrew, yes, it's clear now. However, I think you can't solve this using the qooxdoo widgets the way they are. The UI layer does take full control over the scrolling. Replacing or modifying this behavior to make use of the native scrolling of the browser is not possible without changing th

Re: [qooxdoo-devel] Application-wide native overflow & native scrolling?

2013-01-04 Thread Alexander Steitz
Hi Andrew, if you like to use the SlickGrid widget: what about the table widget which is already available within the qooxdoo framework? Does this fit your needs? -> http://demo.qooxdoo.org/current/showcase/#Table This widget is using a virtual infrastructure. And if you like to use native scr

Re: [qooxdoo-devel] Login window

2013-01-03 Thread Alexander Steitz
Hi, there are basically two strategies to implement a login window with the "real" application behind it. Either you create a HTML login page and after the user has logged in you redirect him to the application or you split up your application in so-called "parts" to minimize the code size

Re: [qooxdoo-devel] IForm and custom object

2013-01-02 Thread Alexander Steitz
Hi, in this specific case I would simply add the "+" button to a container containing the selectbox widget. I would not create an own widget to avoid the redirection implementation. The "+" button is simply a way how to add an item to the selectbox - so it does "only" use the public API of th

Re: [qooxdoo-devel] possible bug in form.Spinner

2013-01-02 Thread Alexander Steitz
Hi Michael, is it possible for you to create a small playground demo for us? This way we can more easily reproduce this issue and fix it. Thanks, Alex -Original Message- From: Michael [mailto:mich...@fantasymail.de] Sent: Friday, December 28, 2012 4:53 PM To: qooxdoo Development Subj

Re: [qooxdoo-devel] VirtualSelectBox display

2012-12-28 Thread Alexander Steitz
Hi Wen, is it just a problem how the value is displayed or does the widget does not get any value? When yu picked a value from the list you can check the value of the virtual selectbox display by virtualboxInstance.getChildControl("atom").getLabel(); This is only the value which the at

Re: [qooxdoo-devel] Table remote model problem

2012-12-28 Thread Alexander Steitz
Hi, is it possible for you to create a sample application which shows this issue reproducible? Regards, Alex -Original Message- From: Elemer [mailto:elp...@gmail.com] Sent: Thursday, December 27, 2012 5:51 PM To: qooxdoo Development Subject: [qooxdoo-devel] Table remote model problem

Re: [qooxdoo-devel] "dataEdited" returns wrong rowIndex when col is sorted

2012-11-26 Thread Alexander Steitz
Hi Marcel, can you the use case you try to solve? If you need to change the sorting somehow you should go for sub-classing an existing model class of the table. The table scroller is all about the view part of the table. This view will get informed by the model if data changed or the e.g. the s

Re: [qooxdoo-devel] qooxdoo 2.1 and 2.0.3 released

2012-11-15 Thread Alexander Steitz
Hi Benjamin, I’ve just uploaded the SDK files (2.0.3 and 2.1) to the repository. They should by synced with maven central within the next 2 hours. Regards, Alex From: Benjamin Dreux [mailto:dreux.benja...@uqam.ca] Sent: Thursday, November 15, 2012 3:59 PM To: qooxdoo Development Subject: Re:

Re: [qooxdoo-devel] qooxdoo 2.1 and 2.0.3 released

2012-11-15 Thread Alexander Steitz
Hi Benjamin, that’s one to-do item on my list :) I plan to upload it to maven central today. So stay tuned. Regards, Alex From: Benjamin Dreux [mailto:dreux.benja...@uqam.ca] Sent: Thursday, November 15, 2012 3:59 PM To: qooxdoo Development Subject: Re: [qooxdoo-devel] qooxdoo 2.1 and 2.0.3 r

Re: [qooxdoo-devel] compile options to prevent optimization of private members

2012-11-14 Thread Alexander Steitz
Hi, you do not need to create an own job achieving this. Adding the global macro "OPTIMIZE" is easier. You have to insert the following into your global "let" block: --snip-- "OPTIMIZE" : ["basecalls", "comments", "strings", "variables", "variants", "whitespace"] --snip-- And that should do i

Re: [qooxdoo-devel] How to translate framework classes

2012-11-14 Thread Alexander Steitz
Hi Frank, you have to look into the "translation" folder of the "framework" folder. Since this is a class of the framework the translations reside there and not in your application structure. Regards, Alex From: Frank Wolbring [mailto:fwolbr...@googlemail.com] Sent: Wednesday, November 14, 2

Re: [qooxdoo-devel] I am confused with Json requests

2012-11-14 Thread Alexander Steitz
Hi, the reason for this is that the Request class internally changes the transport layer to iframe transport whenever you set a form field (= using the 'setFormField' method). API Documentation: setFormField(String vId, String vValue) Add a form field to the POST request.

Re: [qooxdoo-devel] Notification dropdown menu

2012-10-26 Thread Alexander Steitz
Hi Daniel, a possible solution would be to use a custom widget. 1. Create a popup widget as a container - the popup is a composite container so you can put anything you like to into it 2. Create your elements using composite container and put them into your popup 3. Create a button which acts

Re: [qooxdoo-devel] Custom cellrenderer on't change forcolor of the selectet row/cell

2012-10-26 Thread Alexander Steitz
Hi Frank, the article http://manual.qooxdoo.org/devel/pages/desktop/ui_table_styling.html#row-and-column-styling does describe the possibilites how to style the table widget including the table cells itself. Hope this does solve your problem. I guess you have to take a look at

Re: [qooxdoo-devel] qx.ui.form.VirtualSelectBox() set visible items?

2012-10-26 Thread Alexander Steitz
Hi, as the documentation states this property controls the height of the popup of the SelectBox. -> " The maximum height of the drop-down list. Setting this value to null will set cause the list to be auto-sized." The virtual list handles many elements in a performant way. So you don't have t

Re: [qooxdoo-devel] How to debug event listeners?

2012-10-26 Thread Alexander Steitz
Hi, how do you use your callback? As named function or inline? Hard to debug: widget.addListener("click", function(e) { // some code }, this); Better to debug: widget.addListener("click", this._onWidgetClick, this); _onWidgetClick : function(e) { // some code } Does this help you furt

Re: [qooxdoo-devel] FW: Issue with gradient look in IE8 icw https

2012-10-24 Thread Alexander Steitz
iff. I was hoping that if you could point me to the fix that I could apply the same fix to our current version. Thanks in advance for any additional help. Best regards, Jeroen From: Alexander Steitz [mailto:alexander.ste...@1und1.de] Sent: Friday, July 06, 2012 1:52 PM To: qooxdoo Development

Re: [qooxdoo-devel] DateTimeChooser on qooxdoo mobile

2012-09-13 Thread Alexander Steitz
Hi Franco, if you need this widget let us know by creating a bug / enhancement report. Port over logic from the desktop version is IMHO not a reliable solution, since mobile has quite different usability expectations from user perspective. Regards, Alex From: Franco Gotusso [mailto:fgotu...

Re: [qooxdoo-devel] Questions about Tables vs Galleries

2012-09-03 Thread Alexander Steitz
Hi John, (1) technically the right-click is intercepted and replaced by the cellevent And for the other issues: that's exactly what a custom context menu would offer. I think implementing an own context menu is the way to go. Take a look at the contextmenu mixin http://demo.qooxdoo.or

Re: [qooxdoo-devel] Problem with qoxdoo app inside qx.ui.embed.Iframe

2012-09-03 Thread Alexander Steitz
qx.ui.embed.Iframe Hi Alex, Thanks in advance, I'll make a small example. Should I send it to you or to the List (not sure if attached files are delivered)? Regards, Andreas Von: Alexander Steitz [mailto:alexander.ste...@1und1.de] Gesendet: Montag, 3. September 2012 11:25 An: qooxdoo Develo

Re: [qooxdoo-devel] Problem with qoxdoo app inside qx.ui.embed.Iframe

2012-09-03 Thread Alexander Steitz
Hi Andreas, is it possible for you to create a small demo just showing the application structure (no real data)? With this example it would be a lot easier for us to find the issue. A small sample with an application and another application in an iframe should do. Then we have a reproducible b

Re: [qooxdoo-devel] Header and footer

2012-09-03 Thread Alexander Steitz
Hi, the qooxdoo.org is "just" an ordinary website put together with HTML, CSS and enriched with some low-level qooxdoo JavaScript magic. It is not a rich-widget application. Regards, Alex -Original Message- From: kay [mailto:kabelo.tsama...@gmail.com] Sent: Monday, September 03, 201

Re: [qooxdoo-devel] Questions about Tables vs Galleries

2012-09-03 Thread Alexander Steitz
Hi John, for the first question you can take a look into the demo http://demo.qooxdoo.org/devel/demobrowser/#table~Table_Context_Menu.html The first two columns show the native contextmenu, the third prevents it and the fourth column does show an application context menu. I think that'

Re: [qooxdoo-devel] Posting JSON via IStoreDelegate

2012-09-03 Thread Alexander Steitz
Hi Paul, seems to be an issue in the framework. Please file a bug report for it. Thanks for reporting! Regards, Alex -Original Message- From: Paul Watson [mailto:pablowat...@gmail.com] Sent: Friday, August 31, 2012 10:47 PM To: qooxdoo-devel@lists.sourceforge.net Subject: [qooxdoo-d

Re: [qooxdoo-devel] READ aspect of Custom Properties - HELP Please

2012-08-24 Thread Alexander Steitz
Hi John, incrementing a property with every READ operation is not possible for the qooxdoo property system. To be honest, this would be a strange behaviour from my point of view, since this wouldn't be a normal "get" anymore. It would an implicit "get" and "set" within one operation. My advice

Re: [qooxdoo-devel] Simulate a resize in unit tests

2012-08-24 Thread Alexander Steitz
Can you post a small sample of your unit test? Regards, Alex -Original Message- From: loremipsum [mailto:vapor...@gmail.com] Sent: Friday, August 24, 2012 12:56 PM To: qooxdoo-devel@lists.sourceforge.net Subject: Re: [qooxdoo-devel] Simulate a resize in unit tests Thanks for your answ

Re: [qooxdoo-devel] Simulate a resize in unit tests

2012-08-24 Thread Alexander Steitz
Hi, did you already try to flush the layout queue right after e.g. the height is changed? This will lead to an immediate change of the widget height (the DOM is changed). --snip-- // queue flush qx.ui.core.queue.Manager.flush(); --snip-- Regards, Alex -Original Message- From: loremi

Re: [qooxdoo-devel] Positioning of mobile radio buttons

2012-08-24 Thread Alexander Steitz
Hi Ed, currently it is only possible to arrange these items in a vertical box layout. Please open an enhancement report at bugzilla.qooxdoo.org if you need this enhancement. Regards, Alex -Original Message- From: Ed Adasiewicz [mailto:edadasiew...@comcast.net] Sent: Thursday, Augus

Re: [qooxdoo-devel] TypeError: invalid 'instanceof' operand qx.ui.core.Widget

2012-08-16 Thread Alexander Steitz
stablished. The generator should analyse qx.ui.core.EventHandler and "see" the dependency to qx.ui.core.Widget, because of the method canHandleEvent, shouldn´t it ? Cheers, Rob. Von: Alexander Steitz [mailto:alexander.ste...@1und1.de] Gesendet: Mittwoch, 15. August 2012 13:16 An

Re: [qooxdoo-devel] Custom Libraries

2012-08-15 Thread Alexander Steitz
Hi Benjamin, the best way would be to split up your code in own "libraries" (from a qooxdoo point of view) and integrate them together in your main application. How to use libraries and what they are all about is described here: http://manual.qooxdoo.org/current/pages/tool/generator_config_arti

Re: [qooxdoo-devel] TypeError: invalid 'instanceof' operand qx.ui.core.Widget

2012-08-15 Thread Alexander Steitz
Hi Robert, the "instanceof" check relies on an implicit knowledge that on that given time the "qx.ui.core.Widget" class is available. This is secured through the startup of a qooxdoo application. If you change your boot sequence it breaks (obviously). One solution could be to remove the lines

Re: [qooxdoo-devel] Adding a widget to a table cell

2012-07-26 Thread Alexander Steitz
Hi Ravi, the table cells are built using DOM elements. You can't add there widgets easily like it's doable with any other widget container. If you like to open a window to a table cell this demo might be interesting for you: http://demo.qooxdoo.org/current/demobrowser/index.html#table~Table_Win

Re: [qooxdoo-devel] add direct html elements?

2012-07-26 Thread Alexander Steitz
Hi, use the "qx.ui.embed.Html" widget for this: http://demo.qooxdoo.org/current/apiviewer/#qx.ui.embed.Html Regards, Alex -Original Message- From: smisonli...@googlemail.com [mailto:smisonli...@googlemail.com] Sent: Thursday, July 26, 2012 2:06 PM To: qooxdoo-devel@lists.sourceforge.n

Re: [qooxdoo-devel] Creeping windows

2012-07-26 Thread Alexander Steitz
Hi Ed, can you please file a bug report for this? This is clearly something to look after. Regards, Alex -Original Message- From: Ed Adasiewicz [mailto:edadasiew...@comcast.net] Sent: Thursday, July 26, 2012 3:30 PM To: qooxdoo-devel@lists.sourceforge.net Subject: Re: [qooxdoo-devel]

Re: [qooxdoo-devel] Integrate external programms?

2012-07-26 Thread Alexander Steitz
Hi, can you please get a bit more specific what you like to integrate? Do you have a RIA and would like to use another JS library (e.g. charting)? Regards, Alex -Original Message- From: smisonli...@googlemail.com [mailto:smisonli...@googlemail.com] Sent: Thursday, July 26, 2012 11:4

Re: [qooxdoo-devel] Drag and Drop

2012-07-09 Thread Alexander Steitz
istinguish from where the drag comes if I have several lists with the same data. Cheers, Philipp Von meinem iPad gesendet Am 06.07.2012 um 13:57 schrieb Alexander Steitz : > Hi Philipp, > > you can add every type you like to. This is only a string and serves as a > notation l

Re: [qooxdoo-devel] Changing extend class

2012-07-06 Thread Alexander Steitz
Hi, that surprises me ... can you send your so we can take a look at it? Patching this core class should be sufficient to be able to use it in derived classes. Regards, Alex -Original Message- From: Deisss [mailto:tunelaurajam...@hotmail.fr] Sent: Friday, July 06, 2012 1:24 AM To: qo

Re: [qooxdoo-devel] Drag and Drop

2012-07-06 Thread Alexander Steitz
Hi Philipp, you can add every type you like to. This is only a string and serves as a notation like a mimetype. It is only present to distinct between the different types when actually adding the payload data at the "droprequest" event. Check out the manual page for the "Drag & Drop" to get to

Re: [qooxdoo-devel] Issue with gradient look in IE8 icw https

2012-07-06 Thread Alexander Steitz
Hi Jeroen, qooxdoo internally uses the AlphaImage filters for all IE's below 9 and together with "https" there might be an issue. The reason for this is, that it is necessary for IE browsers (no matter which version) that they need a full URL when running under https - otherwise you'll encounte

Re: [qooxdoo-devel] A suggestion for the Bugzilla page

2012-06-29 Thread Alexander Steitz
Hi Omri, actually there is one link for it ... but you have to scroll down a bit. I think this is a good candidate for an UI improvement :) Regards, Alex -Original Message- From: omrihar [mailto:omri...@gmail.com] Sent: Friday, June 29, 2012 10:45 AM To: qooxdoo-devel@lists.sourcefor

Re: [qooxdoo-devel] Recursion problem with "changeValue" event

2012-06-27 Thread Alexander Steitz
Hi Lance, > 1) Does the changeValue event get fired when the fields are set > programatically? Yes, it does. Every change of the value triggers an event - whether through user input or programmatically driven. To differ between user input and programmatically driven: you can use the "input" ev

Re: [qooxdoo-devel] Listening on the dataChanged event and getRowData is null

2012-06-27 Thread Alexander Steitz
Hi, is it possible for you to provide a playground sample? Regards, Alex -Original Message- From: totty [mailto:webdesignpo...@gmail.com] Sent: Monday, June 18, 2012 2:43 PM To: qooxdoo-devel@lists.sourceforge.net Subject: Re: [qooxdoo-devel] Listening on the dataChanged event and ge

Re: [qooxdoo-devel] Listening on the dataChanged event and getRowData is null

2012-06-18 Thread Alexander Steitz
Hi, is ist possible to create a small playground demo for this issue? I tend to say it's a timing issue. Is the data already displayed? Regards, Alex -Original Message- From: totty [mailto:webdesignpo...@gmail.com] Sent: Monday, June 18, 2012 12:40 PM To: qooxdoo-devel@lists.sourcefo

Re: [qooxdoo-devel] Event definition in each class

2012-06-18 Thread Alexander Steitz
Hi Philipp, check out the detailed explanation at the qooxdoo manual for the whole OO features of qooxdoo. è http://manual.qooxdoo.org/devel/pages/core/oo_feature_summary.html#events This links directs you directly to the “events” section. Regards, Alex From: Philipp Engel [mailto:engel.ph

Re: [qooxdoo-devel] Tutorial twitter performance issue

2012-06-18 Thread Alexander Steitz
Hi Daniel, thanks for the kudos :) Concerning your issue with FireBug: did you already try to debug the script? If the “script taking too long” dialog appears you should be able to click the “Debug script” button. This way Firebug is jumping to the location where the error occurs. Check out th

Re: [qooxdoo-devel] Maven integration

2012-05-18 Thread Alexander Steitz
Hi Benjamin, together with Charles Salmon, Daniel and I created this package to be able to use qooxdoo SDK together with maven. Unfortunately, this project got somehow stucked. Charles did an amazing job by providing a lot of maven related knowledge and code, of course. I’d like to continue th

Re: [qooxdoo-devel] uploadwidget not sending completed event

2012-04-27 Thread Alexander Steitz
Hi Scott, AFAIK there is no extra handling for 204 HTTP codes in qooxdoo. If the HTTP code is 200 or greater and less than 300 it is considered as successful. You can debug the IO layer with the help of the environment setting "qx.debug.io" to "true". This will output more debug data during a r

Re: [qooxdoo-devel] SVG support in Eclipse RAP application

2012-04-03 Thread Alexander Steitz
Hi, qooxdoo-contrib does include a SVG contribution. AFAIK this only works for qooxdoo versions 1.1 and newer, but maybe you can check this contribution out and gain some knowledge how to solve your issue. -> http://qooxdoo.org/contrib/project/SVG Regards, Alex -Original Message- Fr

Re: [qooxdoo-devel] How to make an event bubble up?

2012-02-22 Thread Alexander Steitz
Hi Scott, what about if the page widgets are firing the event on theirselves. Since the tabview does know its pages you can easily add the listener methods there in the TabView widget. This way the TabView widget gets notified if the event was fired and can take action. Regards, Alex -O

Re: [qooxdoo-devel] Getting form elements values that were not created as Qooxdoo widgets:

2012-02-22 Thread Alexander Steitz
Hi, to get the value out of a textfield element you can use qx.bom.Input.getValue(referenceToDomElement); Regards, Alex -Original Message- From: smhanes [mailto:smha...@indiana.edu] Sent: Tuesday, February 21, 2012 9:44 PM To: qooxdoo-devel@lists.sourceforge.net Subject: [qo

Re: [qooxdoo-devel] Strange inconsistency between VirtualSelectBox and VirtualComboBox

2012-02-22 Thread Alexander Steitz
Hi Omri, can create a bug report for this one? Your detailed description should be enough to grasp the issue. However, providing an additional playground example would be great. Regards, Alex -Original Message- From: omrihar [mailto:omri...@gmail.com] Sent: Tuesday, February 21, 201

Re: [qooxdoo-devel] Questions about Runtime Theme!

2012-02-03 Thread Alexander Steitz
Hi, it is not possible to switch the theme during runtime. You have to reload your application and set the theme at the beginning. Regards, Alex -Original Message- From: linucos [mailto:linu...@gmail.com] Sent: Thursday, February 02, 2012 1:37 AM To: qooxdoo-devel@lists.sourceforge.n

Re: [qooxdoo-devel] Scroll and 100% height

2012-01-19 Thread Alexander Steitz
Hi Marc. If you specify the height of the widget you basically tell the layout system: I as widget want to have a height of 400px. However, if the container and the connected layout does have e.g. 500px of available height and the layout is setup to grow / shrink its children, then the widget h

Re: [qooxdoo-devel] Using qx.dev.unit.MRequirements in basic application

2012-01-12 Thread Alexander Steitz
Hi Leo, the "MRequirements" mixin does make use of the "qx.core.Environment" class which itself has these dependencies. Since in the Node.js environment no DOM is available the use of the "document" API fails. I guess the mixin is not usable within a Node.js environment. If you like to use cert

Re: [qooxdoo-devel] example of text field AJAX completion?

2011-12-29 Thread Alexander Steitz
: Wednesday, December 28, 2011 6:20 PM To: qoxdoo-devel Subject: Re: [qooxdoo-devel] example of text field AJAX completion? Thanks! How would you recommend showing the results. I am thinking of a list box that shows up below the input box with the search results in it? Scott -----Alexa

Re: [qooxdoo-devel] How to create a new class without hardcoding the name in code?

2011-12-28 Thread Alexander Steitz
Hi Simon, you can easily define a new class during runtime. Instead of writing the class code into an own file you can also define the class in your code. --snip-- // some code var className = someFunctionToGetTheClassname(); var clazz = qx.Class.define(className, { // constructor // prope

Re: [qooxdoo-devel] Getting Table Column Widths To Fit The Contents

2011-12-15 Thread Alexander Steitz
Hi, AFAIK there is no such option. The default behavior of the resize column model is described here: http://demo.qooxdoo.org/current/apiviewer/#qx.ui.table.columnmodel.resizebehavior.Default Regards, Alex From: aditya siram [mailto:aditya.si...@gmail.com] Sent: Wednesday, December 14, 2011

Re: [qooxdoo-devel] Virtual SelectBox Question

2011-12-15 Thread Alexander Steitz
Hi, you can find an explanation here: http://bugzilla.qooxdoo.org/show_bug.cgi?id=5711 Regards, Alex -Original Message- From: rsantiagopaz [mailto:rsantiago...@gmail.com] Sent: Thursday, December 15, 2011 12:29 PM To: qooxdoo-devel@lists.sourceforge.net Subject: [qooxdoo-devel] Virtua

Re: [qooxdoo-devel] Virtual SelectBox Question

2011-12-15 Thread Alexander Steitz
Hi, you can find an explanation here: -Original Message- From: rsantiagopaz [mailto:rsantiago...@gmail.com] Sent: Thursday, December 15, 2011 12:29 PM To: qooxdoo-devel@lists.sourceforge.net Subject: [qooxdoo-devel] Virtual SelectBox Question little question: (sorry the english) Why V

Re: [qooxdoo-devel] Odd behavior with a Form

2011-11-16 Thread Alexander Steitz
Hi Jim, On Thursday 17 November 2011 00:05:07 Jim Hunter wrote: > I think there is my problem. I can not leave the rendering up to > anything except my own code. I can not simply add standard Form > controls to a renderer and say 'go'. I have all custom controls that > have, embedded in them, stan

Re: [qooxdoo-devel] What Documentation Tool are you using?

2011-11-16 Thread Alexander Steitz
Hi Simon, On Thursday 17 November 2011 02:51:13 Simon White wrote: > What documentation tool do you use to produce the Qooxdoo documentation? It's called "Sphinx". Just scroll at the bottom of a documentation page e.g. http://manual.qooxdoo.org/1.5.x/ There you can find the link to -> h

Re: [qooxdoo-devel] Odd behavior with a Form

2011-11-16 Thread Alexander Steitz
Hi Jim, an example of how to use the "Form" is available at http://demo.qooxdoo.org/devel/demobrowser/#ui~FormRenderer.html The main idea about the form is that this is only a logical grouping of widgets. The rendering of a form is delegated to a form renderer instance. The order you add the w

Re: [qooxdoo-devel] Known issue with request.Xhr() and browsers?

2011-11-16 Thread Alexander Steitz
Hi Pascal, I'm really suprised that this works in IE. The reason for failure is the "Same-origin policy". You can only talk to the server from where the HTML page was delivered. In your example you try to make a GET request to "http://www.w3schools.com/ajax/demo_get2.asp"; As long as

Re: [qooxdoo-devel] The correct use of getDomElement()

2011-11-16 Thread Alexander Steitz
Hi Marco, there are basically two options: * use the "appear" event and then initialize your external library Within the "appear" listener method you can be sure the DOM element is created * use your own subclass of "qx.ui.core.Widget" and "qx.html.Element" to have the full control over the

Re: [qooxdoo-devel] Auto-scroll List on Dragover

2011-11-16 Thread Alexander Steitz
Hi Andrew, On Wednesday 16 November 2011 03:34:03 Andrew Goldberg wrote: > I have a virtual list containing instances of a custom ListItem subclass. > I'm using the ListItem's as drop targets to move objects into folders. > This is working fine. What I'm trying to figure out is how to make a list

Re: [qooxdoo-devel] The correct use of getDomElement()

2011-11-15 Thread Alexander Steitz
Hi Marco, On Monday 14 November 2011 23:46:26 Marco Pompili wrote: > So you are saying to override _createContainerElement of qx.ui.core.Widget > and _createDomElement of qx.html.Element. > > >From what I've seen _createContainerElement returns an qx.html.Element and > > _createDomElement return

Re: [qooxdoo-devel] The correct use of getDomElement()

2011-11-14 Thread Alexander Steitz
Hi Marco, On Monday 14 November 2011 17:18:17 Marco Pompili wrote: > I'm integrating some stuff in qooxdoo like tinyMCE and Highcharts, and also > I'm working on a new version of HtmlArea (it requires some time though). Sounds interesting. > To integrate another js library i need always a div t

Re: [qooxdoo-devel] theme refresh?

2011-11-02 Thread Alexander Steitz
On Tuesday 01 November 2011 10:23:25 smisobnline wrote: > yes, but then i must reald it, or? > > up to know i change the theme, add to a cookie and then reload the > complete app. Thts works , but isnt their any easy to use change theme > on the fly? There is no support to change the theme duri

Re: [qooxdoo-devel] theme refresh?

2011-10-31 Thread Alexander Steitz
On Monday 31 October 2011 14:10:47 smisobnline wrote: > how cann i clear the cache in qooxdoo? I meant the browser cache. There is no cache in qooxdoo. Regards, Alex -- Get your Android app more play: Bring it to the Bl

Re: [qooxdoo-devel] qooxdoo selfreload?

2011-10-31 Thread Alexander Steitz
On Monday 31 October 2011 13:20:39 smisobnline wrote: > is their any qooxdoo function thats relaod the full app ? No, but window.location.reload() should do the job. Regards, Alex -- Get your Android app more

Re: [qooxdoo-devel] GIT well....well....

2011-10-31 Thread Alexander Steitz
Hi Stefan, On Monday 31 October 2011 12:56:08 Stefan Andersson wrote: > so far no good: > > about 800 x of this > > svn: REPORT of '/qooxdoo/qooxdoo.git/!svn/vcc/default': 200 OK > (http://svn.github.com) > > about 100 x of this > > Summary of conflicts: > Skipped paths: 12 > > and no chan

Re: [qooxdoo-devel] theme refresh?

2011-10-31 Thread Alexander Steitz
On Monday 31 October 2011 11:18:07 smisobnline wrote: > i try this, but only some widgets like menu updated. if i open a new > window or something else, this is in the new theme. > > Must i refresh someting? i cant find anything like this under theming?!? Did you already try to clear your cach

Re: [qooxdoo-devel] change theming

2011-10-31 Thread Alexander Steitz
Hi, On Monday 31 October 2011 10:47:49 smisobnline wrote: > i use this in the config.json > >"let" : >{ > "APPLICATION" : "myapp", > "QOOXDOO_PATH" : "../qooxdoo", > "QXTHEME" : "myapp.theme.test.Theme", > "API_EXCLUDE" : ["qx.test.*", "${APPLICATION}.theme.*",

Re: [qooxdoo-devel] The usage of aria roles

2011-10-27 Thread Alexander Steitz
Hi Stefan, On Thursday 27 October 2011 11:03:43 Stefan Andersson wrote: > Hej! > > We are willing to put one man on it earliest mid November. Is that ok for > you? With whom of you should he communicate regarding this? you? The best would be to create issue report(s) for this and discuss it in pu

Re: [qooxdoo-devel] Performance Inline/Standalone

2011-10-24 Thread Alexander Steitz
Hi Fritz, On Monday 24 October 2011 16:21:54 Fritz Zaucker wrote: > I am wondering (in a not totally theoretical context): > > If I have two Qooxdoo-applications, one implemented as > qx.application.Standalone, one implemeted as qx.application.Inline and > apart from that identical, what are the

Re: [qooxdoo-devel] I think there is a logic bug in getContentLocation

2011-10-24 Thread Alexander Steitz
Hi Jim, On Monday 24 October 2011 22:58:34 Jim Hunter wrote: > Nothing from the qooxdoo core team on this? It's really keeping me from > closing a bug on my end. I was not able to get a scenario working in the > demobrowser for this. But there should be no reason that, at any time, I > couldn't us

Re: [qooxdoo-devel] The usage of aria roles

2011-10-24 Thread Alexander Steitz
Hi Stefan, On Sunday 23 October 2011 01:02:59 Stefan Andersson wrote: > We can not see that you have an implementation for aria roles > > http://www.w3.org/TR/wai-aria/ > > When are you going to support it? the first step would be to create an issue report and to collect there the necessary in

Re: [qooxdoo-devel] RadioButton stealing focus when value is set

2011-10-18 Thread Alexander Steitz
Hi Nicolas, good news for you: this bug is already fixed and will be shipped with the upcoming 1.6 release. -> http://bugzilla.qooxdoo.org/show_bug.cgi?id=5327 Regards, Alex On Tuesday 18 October 2011 03:37:55 nicholas.tind...@transport.vic.gov.au wrote: > Hi Guys, > > I've noticed some an

Re: [qooxdoo-devel] qx.bom.htmlarea.HtmlArea consideration and modifications

2011-10-06 Thread Alexander Steitz
Hi Marco, On Wednesday 05 October 2011 17:02:46 Marco Pompili wrote: > Like this. > > 1) I got: > > 2) I select with the mouse bla bla bla and use the setBold method. > 3) This is the result: > > > Instead i want this result with no paragraph tag: > > Also if i try to do the same thing in

Re: [qooxdoo-devel] Getting feedback during drag & drop

2011-10-05 Thread Alexander Steitz
On Wednesday 05 October 2011 10:27:21 John Spackman wrote: > I'm writing a custom widget to display a calendar (think Outlook or Google > Calendar) and using drag & drop to rearrange the calendar entries; when > dragging the entry, I want to give feedback saying what time the entry > will be moved

Re: [qooxdoo-devel] qx.bom.htmlarea.HtmlArea consideration and modifications

2011-10-04 Thread Alexander Steitz
Hi Marco, this line is inserted for creating the same behaviour for all browsers. If this behaviour doesn't meet your requirements you can open a enhancement issue for it. The best would be if you can attach your patch to it so we can integrate it into the component. Regards, Alex On Monday

Re: [qooxdoo-devel] Serious qx.bom.element.Scroll.intoView issue?

2011-09-29 Thread Alexander Steitz
Hi David, can you please file a bug report for this and add your findings there? Just attach the little demo. It'll be a good help when debugging this one. Regards, Alex On Wednesday 28 September 2011 16:42:19 david leray wrote: > I don't know how to to it in the playground since I believe th

Re: [qooxdoo-devel] qx.ui.table.selection.Model.MULTIPLE_INTERVAL_SELECTION_TOGGLE: fires two times on toggeling selected row on deselect

2011-09-28 Thread Alexander Steitz
Hi Mustafa, On Wednesday 28 September 2011 19:50:09 Mustafa Sak wrote: > I mentioned that deselecting a selected row in > MULTIPLE_INTERVAL_SELECTION_TOGGLE mode fires changeSelection two times. I > guess it’s a little bug, isn’t it? Can you put together a little playground demo and file a bug rep

Re: [qooxdoo-devel] qx.ui.table.Table: lost selection on sorting column

2011-09-28 Thread Alexander Steitz
Hi Mustafa, On Wednesday 28 September 2011 18:20:54 Mustafa Sak wrote: > is there a way to prevent loosing selection on sorting a column? And if > not, would be a nice enhancement AFAIK this is not implemented. Feel free to open a enhancement bug for it. Regards, Alex -

Re: [qooxdoo-devel] Virtual List and Data Paging Question

2011-09-28 Thread Alexander Steitz
Hi Simon, On Wednesday 28 September 2011 17:59:09 Simon White wrote: > I understand that the virtual list can handle a large number of model > items but I am wondering about situations where you might have thousands > or millions of items in a database. I would think that you would not > want

Re: [qooxdoo-devel] Serious qx.bom.element.Scroll.intoView issue?

2011-09-28 Thread Alexander Steitz
Hi David, can you post a (playground) demo so we can take a look at your code? Regards, Alex On Wednesday 28 September 2011 14:20:23 david leray wrote: > Hi everyone, > I am currently trying to use qx.bom.element.Scroll.intoView to scroll an > element into view in the main window and completel

Re: [qooxdoo-devel] preparing data for rpc transmission from php to qooxdoo

2011-09-28 Thread Alexander Steitz
Hi, On Wednesday 28 September 2011 12:33:54 ksadil wrote: > I am running the following code on the php rpc server to read data from a > database: > > function method_getData($params, $error) > { > $dbhandle = sqlite_open('filename2.sqlite'); > $result =

Re: [qooxdoo-devel] "Too much recursion" error when removing the last item from an Array

2011-09-28 Thread Alexander Steitz
Hi, On Wednesday 28 September 2011 10:01:17 omrihar wrote: > I have a qx.ui.list.List binded to a qx.data.Array which is the model of > the data binding (I add to it a marshalled JSON objects). > > I added a button which removes items from the Array (and through it from > the List). In order to r

Re: [qooxdoo-devel] Inheritance for decorators

2011-09-28 Thread Alexander Steitz
Hi Andrew, AFAIK there are issues regarding the "include" mechanismus of the decorators. We're using it for the packaged themes of the framework without any problems. It may look like this (I left out some details which are not relevant): --snip-- "radiobutton" : { decorator : [

Re: [qooxdoo-devel] Newbie question: extending a core application, what's the right way ?

2011-09-08 Thread Alexander Steitz
Hi Loïc, On Tuesday 06 September 2011 20:48:12 y...@free.fr wrote: > Could you give me some clues for there are some better solutions, but they > are not "out of the box" solutions What kind of solution ? It seems to me > important not having to declare the plugin/part in the main application >

Re: [qooxdoo-devel] Range Slider

2011-09-02 Thread Alexander Steitz
Hi Jonathan, On Friday 02 September 2011 10:58:24 Jonathan Wolfe wrote: > Is there a way to have two handles on the slider widget like the jquery > range slider? http://jqueryui.com/demos/slider/#range No, there is no equalivalent widget that is provided out-of-the-box. You can either take a lo

Re: [qooxdoo-devel] List widget and empty selection

2011-09-02 Thread Alexander Steitz
Hi Benjamin, On Thursday 01 September 2011 16:29:52 Benjamin Dreux wrote: > I'm wondering what the expected behavior of a list is. > When using the selection mode Single, the list may have an empty selection. > But once an element is in the selection. > I think there is no way the remove it, by GU

Re: [qooxdoo-devel] How to release memory when hide/close any window

2011-09-02 Thread Alexander Steitz
Hi, On Friday 02 September 2011 09:22:52 gouravmehta wrote: > I have used qx.ui.window.Window to show details of my listing items. When > we open/close windows seems to cause the memory to increase rapidly. Is > there any solution to release the memory after close/hide window. You can use either t

Re: [qooxdoo-devel] custom decorator mixin: TextShadow

2011-08-11 Thread Alexander Steitz
On Thursday 11 August 2011 18:45:04 Mustafa Sak wrote: > Right but in this case textcolor has to moved to font class too. It is already there -> the "color" property of "qx.bom.Font". -> http://demo.qooxdoo.org/current/apiviewer/#qx.bom.Font > And at the very beginning of using theming in Qooxdo

  1   2   3   4   5   >