Added my small tip to the wiki
http://qooxdoo.org/documentation/0.7/theme_support#how_to_add_new_appearances_to_current_theme,
so that it doesn't get lost.
dperez wrote:
>
> Hi,
>
> Here is a method of adding more appearances to current theme:
>
> function updateTheme() {
> qx.Theme.def
Hi David,
ComboBox or ComboBoxEx?
For ComboBox I think you just have to manipulate combo.getChildren()
For ComboBoxEx:
1. combo.setSelection([])
2. combo.setSelectedIndex(combo.getSelectedIndex()+1)
3. var data = combo.getSelection();
for (var i = 0; i < data.length; i++)
> Just running the online demos in IE7 with script debugging turned
> on. Version says: 0.7.1 pre (r8483).
>
> Every demo gives an error on loading:
>
> ---
> Error
> ---
> A Runtime Error has occurred.
> Do you wish to Debug?
>
> Line: 11
> Error
> Cache headers and compression are now implemented on the
> demo.qooxdoo.org web server.
This really rocks now.
The proof:
GET http://demo.qooxdoo.org/devel/apiviewer/script/qx.ui.core.Widget.js
(265ms)
The API viewer is much more responsive. And much nicer when you come back
to it - it loads
Hello,
I have created a fix for the aptana outline view for qooxdoo 0.7.
This works for me on eclipse 3.2.1.
(warning : this does not provide any help for code-completion)
The outline view is fixed by adding a few lines of javascript code in the
following file:
eclipse/plugins/com.aptana.ide.scr
I'm sending requests for JSON data and would like to know the best way
to test for a successful response.
I'm sending this:
req = new qx.io.remote.Request(url, qx.net.Http.METHOD_POST,
qx.util.Mime.JSON)
and on successful server response using:
reqCompleted : function(e) {
result = e.getC
I'm trying to figure out the best way to perform the following
operations on a combo box:
1. Clearing the list
2. Programmatically moving forward and backward in the list
3. Looping through the list.
If anyone has any examples, that's be great.
Thanks.
David
--
Is there no other way as to add a condition to all the other event listener
functions or to disable the other elements that could dispatch an event? is
there no possibility to say "chancelDisappear"?
--
View this message in context:
http://www.nabble.com/How-to-cancel-other-Events-tf3946840.html
Derrell Lipman schrieb:
On 6/19/07, [EMAIL PROTECTED]
<[EMAIL PROTECTED]> wrote:
+ * Please don't reuse the property by modifying the retreived value from
+ * getRowColors.
+ *
+ * Use a fresh created map because otherwise the property system does not
+ * detect the valu
Derrell Lipman schrieb:
On 6/19/07, Dietrich Streifert <[EMAIL PROTECTED]> wrote:
I just commited modifications to the qx.ui.table implementation which
allows the rows to be themeable and settable.
...
@Derrell: please check if this work well with treevirtual.
Hi Dietrich,
I expect
Hugh Gibson wrote:
> Just to clarify this point: I suggest that you specify a small timeout
> e.g. 1 minute. Obviously the viewer caches data files itself in that they
> are only loaded as required. Therefore the small timeout has no effect
> during a single session of using the API viewer. However
Hello,
I have a form which sets a dirty-Flag if something was changed. How can I
cancel events from the TreeView or from the Menu/TooolBar if they try to
unload the form. I try to catch the "beforeDisapear" but I don't know how to
cancel the other events and keep the form visible.
Can You help me
Hi,
I've created a menu with an option that has an image a little wider than
usual.
The text overlaps with the image.
How can I move the text to the right?
Here are the relevant appearances:
"menu" :
{
style : function(states)
{
return {
backgroundColor : "
On 6/19/07, [EMAIL PROTECTED]
<[EMAIL PROTECTED]> wrote:
> + * Please don't reuse the property by modifying the retreived value from
> + * getRowColors.
> + *
> + * Use a fresh created map because otherwise the property system does not
> + * detect the value change.
This is lik
On 6/19/07, Dietrich Streifert <[EMAIL PROTECTED]> wrote:
> I just commited modifications to the qx.ui.table implementation which
> allows the rows to be themeable and settable.
> ...
> @Derrell: please check if this work well with treevirtual.
Hi Dietrich,
I expect to be (finally) getting back t
Updated http://qooxdoo.org/documentation/0.7/custom_builds with this valuable
info.
Sebastian Werner wrote:
>
> Optimize privates is not yet ready and should not be used currently
>
--
View this message in context:
http://www.nabble.com/Dangerous-optimizations-tf3946204.html#a11195101
Sent
Optimize privates is not yet ready and should not be used currently
Sebastian
dperez schrieb:
> Hi,
>
> I've checked that my release version of qooxdoo 0.7 fails, whereas the debug
> version works ok.
>
> Here are the additional settings for the release version:
> --optimize-st
Hi,
Here is a method of adding more appearances to current theme:
function updateTheme() {
qx.Theme.define("AparienciaMenu", {
title: 'Menú',
extend:
qx.theme.manager.Appearance.getInstance().getAppearanceTheme(),
appearances: {
Hi,
I've checked that my release version of qooxdoo 0.7 fails, whereas the debug
version works ok.
Here are the additional settings for the release version:
--optimize-strings
--optimize-private
--optimize-base-call
--optimize-varia
Forgot to mention that this errors occured in the source version of
showcase.
And the Error seems to come from the theme select window.
Dietrich Streifert schrieb:
@Fabian: I saw your change in rev. 8628 of trunk where you removed the
dependency from qx.theme.classic.Appearance.
Now I'm get
@Fabian: I saw your change in rev. 8628 of trunk where you removed the
dependency from qx.theme.classic.Appearance.
Now I'm getting errors about missing appearances in the console. The
missing appearances I found:
"table-pane", "table-header", "widget", "image", "atom",
"window-captionbar-ti
Just an additional hint how to modify the font and row color of a given
qx.ui.table.Table instance:
var rd = myTable.getDataRowRenderer();
// this sets the row font to bold
rd.setFont("bold)";
// this sets the backgroundColor of the even unselected rows to red and
// and odd unselected rows to
Hi list,
I was discussing with a colleague of mine about qooxdoo and its
popularity ( I told him how great it is ;) ).
Do you have any idea/information about how many users using qooxdoo?
Whenever I read something about ajax, js-frameworks, etc they always
write about dojo, ...
At lea
Hello List,
I just commited modifications to the qx.ui.table implementation which
allows the rows to be themeable and settable.
For this purpose two properties exist: font and rowColors.
font is a standard qooxdoo font property whereas rowColors is a map:
The value of each property in the map
Fabian Jakobs schrieb:
> I have updated the API doc for tabIndex with this information.
>
> Best Fabian
Ok, thanks! I just wanted to make sure that we use your API properly ;-)
Ralf
-
This SF.net email is sponsored by D
Thanks for the tip ;) I found the file.
But I just found another solution. I modified the path in the passwd-file.
So my default-dir is now my qooxdoo-dir ;)
Thanks anyway!
-Ursprüngliche Nachricht-
Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Leander Hanwald
Gesendet
dperez schrieb:
> Hi,
>
> When activating the --copy-resources switch in a custom build, all the
> resources are copied, not only the needed ones.
> For example, qooxdoo only uses a few icons from icon/16/*, but also
> icon/22/*, icon/128/* and so on are copied.
> I find more practical to determine
Sorry, ".bashrc" is right :)
Cygwin created some default files when I started the bash the first
time. I don't know if there is a situation when cygwin doesn't do that.
Tobias Koller (GERMO GmbH) schrieb:
> Thanks!
> But I can't find a bash.rc-file...
>
>
> -Ursprüngliche Nachricht-
> Von
> we are working on the issues you have brought up.
Thanks :-)
> 1. I have just updated the stable 0.7 API viewer online. Please
> check, whether it is now working for you.
After forcing a page refresh all is sweetness and light:
GET http://demo.qooxdoo.org/current/apiviewer/script/qx.ui.core.
dperez schrieb:
> Hi,
>
> I've discovered img/qooxdoo/widget/Ext/gradient/menu-background.png is
> missing from the 0.7 release.
> I consider this a bug.
>
> It is referenced here:
>
> "menu" :
> {
> style : function(states)
> {
> return {
> backgroundColor : "
> I create commands with a keyboard assignment that I place inside
> the context menu of the widget. I'd like that these commands were
> active only when the widget has the focus.
>
> I have several multiselection listboxes, and have added the Ctrl+A
> command to select all the items. This com
dperez schrieb:
> Hi,
>
> In order to improve the user experience of my app, I'll add context menus.
> I would like them to appear on a right click.
>
> Questions:
> 1) In menu_1.html I have seen this:
> w1.addEventListener("mousedown", function(e)
> {
> e.setPropagationStopped(
Hi Hugh,
we are working on the issues you have brought up.
1. I have just updated the stable 0.7 API viewer online. Please check,
whether it is now working for you.
2. Thomas will configure our apache server to send proper cache headers
and enable gzip compression.
Best Fabian
-
dperez schrieb:
> In Parent.js, you can see this:
>
> // Deactivate focus handling
> this.setTabIndex(-1);
>
> So, -1 must be a valid value.
>
>
I have updated the API doc for tabIndex with this information.
Best Fabian
-
Thanks!
But I can't find a bash.rc-file...
-Ursprüngliche Nachricht-
Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Leander Hanwald
Gesendet: Dienstag, 19. Juni 2007 09:56
An: qooxdoo Development
Betreff: Re: [qooxdoo-devel] Shortcuts in cygwin
You could save this in you
Thanks Fabian, in this way smaller qx.js can be build.
When I create a new appearance entry or update an existing one, I will try
to update both themes.
Fabian Jakobs-2 wrote:
>
> Hi David,
>
> the inheritance was mainly used for convenience because we could start
> with only a small subset a
You could save this in your bash.rc file in your homefolder (should be
the folder the cygwin bash starts in).
Sebastian Werner schrieb:
> like is all unixes you can define a variable or an alias:
>
> alias qx="cd /home/myself/qooxdoo"
>
> or
>
> qx="/home/myself/qooxdoo"
> cd $qx
>
> Hope this hel
Thanks Hugh
That is exactly what I was looking for. :-)
Every day I discover a new feature of Qooxdoo.
Another issue:
I create commands with a keyboard assignment that I place inside the
context menu of the widget.
I'd like that these commands were active only when the widget has the focus.
I
> In order to improve the user experience of my app, I'll add context
> menus. I would like them to appear on a right click.
Why don't you use an event listener for "contextmenu" ? It's part of
widget - see http://demo.qooxdoo.org/devel/apiviewer/#qx.ui.core.Widget
That way you are insulated fro
kumar balaji schrieb:
> Hi
>
> Pls Try label.setHtml();
>
>
Or setText() if you are using qooxdoo 0.7
Best Fabian
-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and
C.Bieser schrieb:
> Is there no way to print helpful error messages?
>
> I just want to load a self defined class called "pim.ui.component.Editform"
> within an event listener. But the following error message is the only thing
> I get.
>
> [Exception... "'Error: Invalid Widget: [object pim.ui.comp
dperez schrieb:
> I have tried to comment the extend key, and seen no effect:
>
> qx.Theme.define("qx.theme.ext.Appearance",
> {
> // extend : qx.theme.classic.Appearance,
>
> title : "Ext",
>
> appearances : ..
>
> }
>
> So, the extend clause adds an unneeded dependency.
> Am I right?
>
>
Hi,
When activating the --copy-resources switch in a custom build, all the
resources are copied, not only the needed ones.
For example, qooxdoo only uses a few icons from icon/16/*, but also
icon/22/*, icon/128/* and so on are copied.
I find more practical to determine by hand what is needed and
> It is published to the web. You can use /devel/ instead of
> /current/.
I'm aware of that. But I can't see any links to /devel/ from the qooxdoo
site.
> But "current" should always point to the last stable
> release. Which is 0.7 currently.
My point is that anyone evaluating qooxdoo at the
> One problem which we have with all these things is that we need to
> integrate it in the build system. The complete demo section
> publishing works through the Makefiles checked in the SVN. We need
> to manipulate them to do it. And we need to be sure that the build
> versions (release archiv
Hi,
I've discovered img/qooxdoo/widget/Ext/gradient/menu-background.png is
missing from the 0.7 release.
I consider this a bug.
It is referenced here:
"menu" :
{
style : function(states)
{
return {
backgroundColor : "menu",
border : "gene
Hi,
In order to improve the user experience of my app, I'll add context menus.
I would like them to appear on a right click.
Questions:
1) In menu_1.html I have seen this:
w1.addEventListener("mousedown", function(e)
{
e.setPropagationStopped(true);
});
What does t
As a matter of fact, only a few appearance entries are reused.
dperez wrote:
>
> I have tried to comment the extend key, and seen no effect:
>
> qx.Theme.define("qx.theme.ext.Appearance",
> {
> // extend : qx.theme.classic.Appearance,
>
> title : "Ext",
>
> appearances : ..
>
> }
>
48 matches
Mail list logo