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
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
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
--
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
--
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
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
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
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
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
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
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
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
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
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:
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
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
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
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.
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
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
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
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
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
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...
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
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
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
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
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'
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
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
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
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
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
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
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
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
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
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
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]
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
: 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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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.*",
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
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
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
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
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
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
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
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
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
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
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
-
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
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
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 =
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
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 : [
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
>
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
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
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
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 - 100 of 473 matches
Mail list logo