Re: [qooxdoo-devel] HtmlArea toolbars and updates for 0.8.1

2009-02-25 Thread John Spackman
Hi Petr, What browser are you using? I can reproduce some but not all: - there seems to be a general problem with the keyboard callbacks not updating - deleting an image works with backspace in FF, does nothing in IE - Font size is not working at all :) - Ctrl-A, Del, and type works in FF3 and I

Re: [qooxdoo-devel] PHP Backend - JSONRPC Server rewritten OO-style

2009-02-25 Thread panyasan
Hi Derrell, I am glad you find the rewrite useful. I'd be happy if you could test it with your code and it would be great if you could have a look into PHP5-error handling. Thanks, Christian Derrell Lipman wrote: > > On Wed, Feb 25, 2009 at 8:45 AM, panyasan wrote: > >> >> Once this packa

[qooxdoo-devel] contrib: not sure how to tell which tagged contribs are compatible with which qooxdoo versions

2009-02-25 Thread Mike Rea
I thought I would try out some of the contributions in the contrib that I haven't previously (or recently) tried. I quickly realized that I don't know how to tell which contributions are compatible with 0.8.1. This page helps a little, but it doesn't really give all of the compatibility informat

[qooxdoo-devel] How do I create an Inline Application using create-application

2009-02-25 Thread Gene Amtower
I'm new to Qooxdoo and finding a lot to like, but my current project really needs the "Inline" solution. I've successfully created and built both the HelloWorld application and a BOM example, but I'm having trouble figuring out the "Inline" configuration. I read the documentation and looked at se

Re: [qooxdoo-devel] HtmlArea toolbars and updates for 0.8.1

2009-02-25 Thread Petr Kobalíček
Hi John, your contribution looks good, but there are still many problems and I think all of them are related to HtmlArea (not HtmlEditor). For example: - Bold/Italic/... buttons are incorrectly updated when using arrows (keyboard) - Text align buttons are incorrectly updated when using arrows (ke

Re: [qooxdoo-devel] Table cell tooltips

2009-02-25 Thread Fritz Zaucker
I submitted bug 2001 on this issue. Such an inspiring number, perhaps this makes it to be selected for 0.8.2 ... :-) I am still trying to get Denis ToolTipTable.js posting on the mailing list (see below) to work, but seem to be missing something (only a few lines seem to be 0.7.x specific as I cou

Re: [qooxdoo-devel] Table cellContextmenu event

2009-02-25 Thread Derrell Lipman
On Wed, Feb 25, 2009 at 11:02 AM, Miron Brezuleanu wrote: > > I need to attach a context menu to a table. I just checked in a new mixin, qx.ui.table.MTableContextMenu, that makes it easy to handle context menus in Table and TreeVirtual. There's also a new demobrowser demo, Table/Table_Context_M

Re: [qooxdoo-devel] Generator/build help - using qx-0.js directly in myApp.js

2009-02-25 Thread mshillin
A reply to myself. I solved this issue by setting variants qx.debug="off" in framework/config.json when building the qx.js and qx-0.js. It had nothing to do with the way the qx.loader was operating for my application The qx.debug="on" in the "build" version was causing problems in the ui.lega

[qooxdoo-devel] HtmlArea toolbars and updates for 0.8.1

2009-02-25 Thread John Spackman
Dear all, Towards the end of last year there was a discussion about HtmlArea missing toolbars and other elements needed to use it as a complete, ready-to-go control; both Petr Kobalíček and I had developed wrapper controls that added these features but the chat went quiet - I made a TinyMCE adapte

Re: [qooxdoo-devel] Table cellContextmenu event

2009-02-25 Thread Ian Horst
I use customized contextmenu setter as besides of default contextmenu action I add alternate action for contextmenu too. // This is how I set contextmenu to cells. table.getPaneScroller(0).getTablePane().setContextMenu(contextMenu); Ian Horst Miron Brezuleanu wrote: > Hello, > > I need to att

Re: [qooxdoo-devel] Best tool to run test cases in qooxdoo

2009-02-25 Thread thron7
robust wrote: > Thanks for your info thron7. Can I use the Test runner to test if the > expected data is returned from the server? > there is no general restriction on how the tested classes do their work. if your class under test needs to talk to a server to compute its result that should

[qooxdoo-devel] Table cellContextmenu event

2009-02-25 Thread Miron Brezuleanu
Hello, I need to attach a context menu to a table. The context menu needs to display different options depending on the clicked cell. The solution I've found so far is to hold on to a reference of the context menu set for the table, and configure the context menu in the cellClick handler. I expect

Re: [qooxdoo-devel] Best tool to run test cases in qooxdoo

2009-02-25 Thread robust
Thanks for your info thron7. Can I use the Test runner to test if the expected data is returned from the server? Thanks, Robust thron7-2 wrote: > > the test runner is best for testing the API of specific classes, one at > a time. you would use it to e.g. automatically invoke a method on a >

Re: [qooxdoo-devel] Moving from v0.8 SDK to v0.8.1 SDK - error in generate.py

2009-02-25 Thread thron7
Amit Rana wrote: > Hi, > > This is in reference to my mail sometime back. I keep switching between > v0.8 and v0.8.1 because my application is working fine in v0.8 and > deployed and I am making it work in v0.8.1 to support future release. > > When I run "generate.py translation" in v0.8.1 SDK

Re: [qooxdoo-devel] RIA Issues: Global Exception Handler in JavaScript

2009-02-25 Thread Derrell Lipman
On Wed, Feb 25, 2009 at 8:58 AM, Miron Brezuleanu wrote: > Hello, > > one difference between RIAs developed with Qooxdoo and 'classical' web > sites is that the user of a RIA spends a lot of time in the same page, > as opposed to the user of the 'classical' web site who jumps from page > to page.

[qooxdoo-devel] RIA Issues: Global Exception Handler in JavaScript

2009-02-25 Thread Miron Brezuleanu
Hello, one difference between RIAs developed with Qooxdoo and 'classical' web sites is that the user of a RIA spends a lot of time in the same page, as opposed to the user of the 'classical' web site who jumps from page to page. This means that a RIA is similar to a desktop application and I'd lik

Re: [qooxdoo-devel] PHP Backend - JSONRPC Server rewritten OO-style

2009-02-25 Thread Derrell Lipman
On Wed, Feb 25, 2009 at 8:45 AM, panyasan wrote: > > Once this package has proven stable, we could add it to qooxdoo-contrib as > a > separate project, or include it into Derrell's project. Christian, I've been watching your commits. Once it's stable, I'd like to replace the current all-in-line

Re: [qooxdoo-devel] How to add a red border to field ?

2009-02-25 Thread Jean-Baptiste BRIAUD -- Novlog
It was that, it works as expected now. Thanks. On 25 Feb 2009, at 07:55, Roman Schmid wrote: > Hi Jean-Baptiste > > I think you should also set the border width. Either with the "width" > property (to set all sides to the same value) or separately with > widthLeft, widthRight etc. > > Other than

[qooxdoo-devel] PHP Backend - JSONRPC Server rewritten OO-style

2009-02-25 Thread panyasan
Hi everybody, as announced earlier, I have finally found the time to rewrite Derrells excellent PHP JSONRPC server script into a class-based, OO-style server. While Derrells code was very useful and stable, it was quite difficult to adapt since it was basically a long script and each change broke

[qooxdoo-devel] Generator/build help - using qx-0.js directly in myApp.js

2009-02-25 Thread mshillin
For my development environment, I would like my classes to be available in "source" version , but have the qooxdoo library classes in "build" version. I could not figure out how to do this with the build tool, so I tried hacking the loader script for my app. If I execute "generate.py build" in

Re: [qooxdoo-devel] Copy and paste the text from a container

2009-02-25 Thread Jonathan Weiß
Hi everybody! At the moment it is not possible to select the text on labels in Firefox, Safari and Chrome. See http://bugzilla.qooxdoo.org/show_bug.cgi?id=1530 for details. Kind regards, Jonathan Weiß > @Johnny: You are working on text selection currently. Can you say > something about

Re: [qooxdoo-devel] Moving from v0.8 SDK to v0.8.1 SDK - error in generate.py

2009-02-25 Thread Amit Rana
Hi, This is in reference to my mail sometime back. I keep switching between v0.8 and v0.8.1 because my application is working fine in v0.8 and deployed and I am making it work in v0.8.1 to support future release. When I run "generate.py translation" in v0.8.1 SDK (and not trunk version), I get

Re: [qooxdoo-devel] Moving from v0.8 SDK to v0.8.1 SDK - error in generate.py

2009-02-25 Thread Amit Rana
Just a quick update. Overriding in config.json also doesn't help. So, I had to change the base.json. Also, my translation job in config.json defined as : "translation" : { "extend" : ["common", "appconf::translation"] } did not work as it gave error saying "Malformed entry : mycu

Re: [qooxdoo-devel] How to add a red border to field ?

2009-02-25 Thread Matthew Gregory
Hi, This should work but will remove the orriginal decorator. Just something that you could try, if you widgets are spaced out enough you could add a shadow instead. This is esentially the same as a decorator but appears under the widget and can be larger. You could create a shadow that is simp

Re: [qooxdoo-devel] Table change - v0.8

2009-02-25 Thread Amit Rana
Hi, The issue was resolved with v0.8.1 SDK. Now, I don't even need to hide and show the col. manually or via code. The new SDK takes care of this on its own when I use the setTableModel() function. Thanks to you all. :-) regards Amit Derrell Lipman wrote: > On Tue, Feb 24, 2009 at 9:57 AM, Am

Re: [qooxdoo-devel] Best tool to run test cases in qooxdoo

2009-02-25 Thread thron7
the test runner is best for testing the API of specific classes, one at a time. you would use it to e.g. automatically invoke a method on a class instance with various parameters and check the return values. these tests should require no manual intervention and are essentially non-gui. selenium