"On 5/25/10 8:25 AM, MartinWittemann wrote:
>
> Hi Greg,
> I found a section about child controls in general [1] and about the alias
> handling of child controls in the appearance [2]. Maybe those two help.
> Regards,
> Martin
>
> [1]
> http://qooxdoo.org/documentation/1.1/ui_develop?s=child%20cont
You could hack this to do that:
http://code.google.com/p/js2-mode/
It's in lisp, after all. :)
Dave
--
View this message in context:
http://qooxdoo.678.n2.nabble.com/ANNC-qooxlisp-0-1-qooxdoo-Common-Lisp-tp5095503p5099824.html
Sent from the qooxdoo mailing list archive at Nabble.com.
Dave Baggett wrote:
> Another approach you could take is to generate JavaScript code from Lisp
> code. Google Web Toolkit does this using Java as the source language.
>
> It would be a bit of work, but you'd never really have to look at JavaScript
> code again. :)
There actually exists a packag
thron7 wrote:
> Nice work, Kenny.
Thx!
> Maybe you want to add yourself to the development
> platforms wiki page.
Is there a procedure for that, or do I just need to create an account
and then edit the page?
kt
--
Another approach you could take is to generate JavaScript code from Lisp
code. Google Web Toolkit does this using Java as the source language.
It would be a bit of work, but you'd never really have to look at JavaScript
code again. :)
Dave
--
View this message in context:
http://qooxdoo.678.n
Jean-Baptiste BRIAUD -- Novlog wrote:
> Congratulation ! I like LISP :-)
:)
>
> Just curious :
> On software architecture point of view, you may not use all the power of
> client-side CPU.
> Why did you use server-side CPU to produce GUI ?
> GUI doesn't need to be served by server, only data
The workaround that Dojo seems to use for Opera is to open new 1x1 window,
write the original iframe's contents into it, then print that. I'm reading
various places that this issue has been fixed in recent versions of Chrome.
Dave
--
View this message in context:
http://qooxdoo.678.n2.nabble.c
Congratulation ! I like LISP :-)
Just curious :
On software architecture point of view, you may not use all the power of
client-side CPU.
Why did you use server-side CPU to produce GUI ?
GUI doesn't need to be served by server, only data has to ...
On 24 mai 2010, at 21:53, Kenneth Tilton wrote
On Tue, May 25, 2010 at 09:43, Peter Schneider wrote:
> Hi Derrell,
>
> thanks for your suggestions, but I like to "disagree" a bit ;)
>
You're allowed. :-)
>
> 1. -values in tables are quite well handled as far as I can see in my
> application. I am using -values all over the place here.
>
Hi Derrell,
thanks for your suggestions, but I like to "disagree" a bit ;)
1. -values in tables are quite well handled as far as I can see in my
application. I am using -values all over the place here.
The only thing that came up (so far) was when I changed the sorting to
"case-insensiti
Hi Dave,
I don't have a working solution, but at least I can confirm that Opera
doesn't allow calling print() on an iframe from the parent window. A
quick google search finds questions relating to that behavior from as
far back as the Opera 7 days, so it seems they have no intention of
changin
Hi Greg,
I found a section about child controls in general [1] and about the alias
handling of child controls in the appearance [2]. Maybe those two help.
Regards,
Martin
[1]
http://qooxdoo.org/documentation/1.1/ui_develop?s=child%20control#child_controls
[2]
http://qooxdoo.org/documentation/1.1/
On Tue, May 25, 2010 at 08:29, Peter Schneider wrote:
> Hello,
>
> I have found an issue in the current framework (1.2-pre/trunk):
>
> When you set the 'caseSensitiveSorting' property of the table-model to
> 'false',
> the sorting does not work when the model-data contains values.
>
Hi Peter,
T
On 5/25/10 6:04 AM, MartinWittemann wrote:
> Hey Greg,
> you have to take care of the appearance of those sub widgets. If you use
> them as child control, the appearance id's change (I guess) which causes the
> appearance (the arrow for example) to go away. Try to define an item in your
> appearanc
Has anyone written code to print an iframe's contents in a cross-browser way?
The dojo source seems to have crazy workarounds for Chrome and Opera, so I'm
wondering if anyone here has any experience with this. The workaround
involves popping up a window using window.open(), so I'm worried that it
Hello,
I have found an issue in the current framework (1.2-pre/trunk):
When you set the 'caseSensitiveSorting' property of the table-model to 'false',
the sorting does not work when the model-data contains values.
See http://tinyurl.com/23xd9tg for a demonstration
Attached you will find a patc
Hi Ken,
I try to answer you questions to make it more understandable.
1) "changeSelection" always appear when the selection changed, also when
a _selected_ item is removed from the SelectBox. The reason for that is
the selection manager. The manager doesn't allow a empty selection on
SelectBo
Hi Dave,
to make tab focusing work inside the html.Embed, you have to stop the
event's propagation, else qooxdoo's focus handler will try to focus the
next widget:
embed.addListener("keypress", function(e) {
if (e.getKeyIdentifier() == "Tab") {
e.stopPropagation();
Hey Greg,
you have to take care of the appearance of those sub widgets. If you use
them as child control, the appearance id's change (I guess) which causes the
appearance (the arrow for example) to go away. Try to define an item in your
appearance theme just extending the original appearance. Take
Nice work, Kenny. Maybe you want to add yourself to the development
platforms wiki page.
T.
On 05/24/2010 09:53 PM, Kenneth Tilton wrote:
> Screenshots: http://github.com/kennytilton/qooxlisp/downloads
>
> Intro: http://wiki.github.com/kennytilton/qooxlisp/
>
> Congrats to the qooxdoo team for
Hi Alexander,
On 25.05.2010 00:05, alexander.volik wrote:
>> seems like you're looking for the preventDefault() method.
> Yes, it works for the textbox.
>> Otherwise, if you don't want the user to select certain ListItems, you
>> can check for the selection in the "changeSelection" listener and
Hi List,
I'm trying to set the column model of my remote table from the backend.
Everything works fine beside this.
Here is part of my model code:
qx.Class.define("licnet.modellistagentadmin",
{
extend : qx.ui.table.model.Remote,
construct: function()
{
this.base(arguments);
Thank you Thron.
You've helped me a lot.
ps.: there is a little mistake in your snip:
not
"source-build" : {
"extend" : ["myparts"]
}
but
"source-script" : {
"extend" : ["myparts"]
}
--
View this message in context:
http://qooxdoo.678.n2.nabble.com/parts-configuring-question-tp5094588p50
On 05/24/2010 10:45 AM, Piotr Leszczynski wrote:
> Hello,
>
> Im trying to parse a date from our backend using the
> qx.util.format.DateFormat parse method.
>
> My problem lies with interpreting locale, namely it doesn't work.
> I've been working to figure it out thinking i did something wrong.
Hi,
the focus call on a window widget instance has no effect to set a window
active (blue title bar). The window API has a property for that, here an
example:
popup.addListener("disappear", function(e){
window.setActive(true);
button1.focus();
});
This should do what you are expect.
Cheers,
Ch
Hi,
the widgets on a tabview.Page aren't created until the page is
activated, so you have to make sure the page containing the HtmlArea is
active at some point. You could select it at application startup, or in
whichever part of your code is responsible for collecting the data to be
saved. Per
Have you looked at this demo:
http://demo.qooxdoo.org/devel/demobrowser/index.html#animation~Transition_Position.html
?
T.
On 05/24/2010 01:48 AM, wclef wrote:
>
> hi !
>
> I am trying to scale a window to a given dimension but i'm having a hard
> time doing so. Here is what i wrote.
>
>
You could try qx.ui.core.queue.Manager.flush(), maybe after a tiny
update to some of your widgets.
T.
On 05/23/2010 02:13 PM, Tobias Oetiker wrote:
> Hi,
>
> I have played a little with the new google webfonts, working them
> into a qooxdoo style ... it works well sofahr, BUT since page can
> st
hello
if im not wrong your fx setup seems incorrect.
as you can see in the api reference [1], scaleX and scaleY properties are
just boolean flags.
you must use scaleTo property instead.
i suggest you to take a look at the animation showcase of demo browser [2].
regards
huseyin
[1] http://dem
On 05/21/2010 11:49 PM, Alexander Steshenko wrote:
> As I understand when I run *generate.py source* it parses the sources
> and includes all the namespaces/classes that are needed in the generated
> js file.
> That's why, I guess, we have the following in an Application class:
>
> // su
Can you create a local source version of Demobrowser, and try it with
that? Maybe this is getting things further.
BTW: I found Opera 10.5 to be really fishy, and on my Windows box
reverted back to Opera 10.10.
T.
On 05/21/2010 12:54 PM, fx5 wrote:
>
> Thank you,
>
> if the ubuntuone-link doesn
On 05/24/2010 06:33 PM, danovics wrote:
>
> I've begun to play a little with parts.
> What I've found confusing that in the manual the configure part says that I
> have to create a new key "build-scipts" in the config.json under the "jobs"
> and I have to configure my parts inside this key.
>
32 matches
Mail list logo