Hi Sirichoke,
On Fri, 2006-09-01 at 09:26 +0700, Sirichoke wrote:
> Dear all,
>
> I always found the error same as in splitpane1.html
> in test folder.
>
> When you drag horizontal split down, see the error on
> the debug pane...
>
> What's the cause of this problems?
this is a bug in the list
Hi,
On Thu, 2006-08-31 at 22:40 -0700, dperez wrote:
> Hi Lycovian,
>
> I think they are a very recent addition. They weren't present in 0.6RC1.
you are right. This is a first early shot. Don't use it in "real"
applications. I hope I'll finished the whole thing next week. So please
be patient.
Hi Lycovian,
I think they are a very recent addition. They weren't present in 0.6RC1.
lycovian wrote:
>
> Now how do you use them? Examples Splitter1/2/3 under Test don't seem to
> do anything. Anyone have a simple working example?
>
--
View this message in context:
http://www.nabble.co
It works ok for me under IE6 and FF 1.5
junglist wrote:
>
> Hi community.
>
> Doing a getValue() on a QxTextArea returns the value as it should BUT
> all the linebreaks are gone. :..(
>
> My software needs to store and display (display also in editable widgets)
> larger amount of text someti
Hi,
It's a good habit to declare always using "var", to limit the scope of
variables.
alex.d wrote:
>
> Hi,
> = Variable declaration =
>
> Be careful with the variable declaration especially in IE. This code
> will work fine in Firefox:
>
>
> liste = new qx.ui.form.List;
> item =
Dear all,
I always found the error same as in splitpane1.html
in test folder.
When you drag horizontal split down, see the error on
the debug pane...
What's the cause of this problems?
How to fix that?
Thanks.
Sirichoke
Hey there,
the Umlaut in qooxdoo.org's demo/test section does not do anything
(append strings to debug console or something). I'm using FF 1.5. What's
wrong?
Wbr, Florian
-
Using Tomcat but need to do more? Need to support
Now how do you use them? Examples Splitter1/2/3 under Test don't seem to do
anything. Anyone have a simple working example?
--
View this message in context:
http://www.nabble.com/Yay%21--Splitters-...-tf2199462.html#a6088937
Sent from the qooxdoo-devel forum at Nabble.com.
--
Hi!
just want let your know that I've updated these articles:
* http://qooxdoo.org/documentation/user_manual/layout_manager
* http://qooxdoo.org/documentation/user_manual/widget_visibility
* http://qooxdoo.org/documentation/user_manual/color_and_border_objects
to qooxdoo 0.6.
Cheers,
Sebastian
Hi,I load a lot of information in a TextArea widget and no line break is lost.Perhaps the data that you show in the TextArea is transformed if youstored this information in a database and then retrieve it.
A character conversion can break some line breaks and so on... On 8/31/06, junglist <[EMAIL
Hi community.
Doing a getValue() on a QxTextArea returns the value as it should BUT
all the linebreaks are gone. :..(
My software needs to store and display (display also in editable widgets)
larger amount of text sometimes so i urgently need a way to use simply
textformating like linebreaks, t
Hum, that would mean IE Javascript does not support global objects.
I'm using IE and never had problems with that.
Cheers,
Jubei
alex.d wrote:
>
> Hi,
> = Variable declaration =
>
> Be careful with the variable declaration especially in IE. This code
> will work fine in Firefox:
>
Hi qooxdoo community,
another step forward to highly optimized applications based on qooxdoo:
I would like to introduce the tree "compiler". The tree compiler is able
to "compile" a syntax tree (generated by treegenerator.py which uses the
tokenizer.py) back to optimized JavaScript code. In it'
Hi,
= Variable
declaration =
Be careful
with the variable declaration especially in IE. This code will work
fine in
Firefox:
liste = new
qx.ui.form.List;
item = new
qx.ui.form.ListItem(“Test”, null);
liste.add(item);
But not in
IE. You must use this instead:
var
Hi,
it seems to be a similar problem to the one i described in "List in
Window in Window" topic. But in my app. the eventListener handler isn't
called at all.
Cheers,
alex.d
Hi ,
I m builiding application using Qooxdoo 0.5.3.
In my application i have requrement where I open QxWindow [Wi
Hi ,
I m builiding application using Qooxdoo 0.5.3.
In my application i have requrement where I open QxWindow [Window1]. This loads 1 form in Gridlayout
Form holds a button to open new QxWindow [Window2]. On Click of button , it loads Qxlistview in window.
Again to edit data from QxListview,
Hi,
Probably you guys can help me with my little problem. I have a
number of textfields(approx. 50) which all have to respond to
following events:
1) to "normal" keypress to search some data in the database
2) to "special" keys like "Enter", "f4".. to do some
It seems to be a general problem:
a textfield in the second window like this:
var text = new qx.ui.form.TextField;
text.addEventListener(qx.constant.Event.KEYPRESS, function(e){
this.debug(e.getKeyCode());
});
win2.add(text);
will also produce no debug
I have posted the patch to Bugzilla.
dperez wrote:
>
> The bug relates to positioning of combobox popups.
>
--
View this message in context:
http://www.nabble.com/Posted-patch-for-bug-133-tf2196068.html#a6077450
Sent from the qooxdoo-devel forum at Nabble.com.
The bug relates to positioning of combobox popups.
--
View this message in context:
http://www.nabble.com/Posted-patch-for-bug-133-tf2196068.html#a6077447
Sent from the qooxdoo-devel forum at Nabble.com.
-
Using Tomcat but
Hi,
Sorry for mailing all too often O:-) , but i'm currently at a loss:
I have following situation: two windows(win2 in win1) and a simple
qx.ui.form.List with three Items in win2. The Problem is that the List
in the second window doesn't respond to any key events because it is
constant out of t
Alex D. schrieb:
>> Alex D. schrieb:
>>> Hi,
>>> Probably you guys can help me with my little problem. I have a number
>>> of textfields(approx. 50) which all have to respond to following events:
>>>
>>> 1) to "normal" keypress to search some data in the database
>>> 2) to "special" keys like "E
> Alex D. schrieb:
>> Hi,
>> Probably you guys can help me with my little problem. I have a number
>> of textfields(approx. 50) which all have to respond to following events:
>>
>> 1) to "normal" keypress to search some data in the database
>> 2) to "special" keys like "Enter", "f4".. to do som
Thank you Alex.
I've changed this part in SVN.
Sebastian
Alex D. schrieb:
> Hi,
> i found a little syntax error in List.js. Hier is the diff(also as
> attachment):
>
> Index: List.js
> ===
> --- List.js(revision 4027)
> +++
Alex D. schrieb:
> Hi,
> Probably you guys can help me with my little problem. I have a number of
> textfields(approx. 50) which all have to respond to following events:
>
> 1) to "normal" keypress to search some data in the database
> 2) to "special" keys like "Enter", "f4".. to do some other
Hi,
i found a little syntax error in List.js. Hier is the diff(also as
attachment):
Index: List.js
===
--- List.js(revision 4027)
+++ List.js(working copy)
@@ -173,7 +173,7 @@
currentItem = items[i];
if (curren
26 matches
Mail list logo