[qooxdoo-devel] Textfield not selectable

2007-02-22 Thread Tobias Koller (GERMO GmbH)
Hello, i created a usual textfield but I can't select a text to delete it or to copy it. I can set the cursor to the end of the inputText and delete it or add something. But the text itself is not selectable. Its only in FireFox like this. IE works fine. What could be the problem?

Re: [qooxdoo-devel] Firewall filtering of scripts ?

2007-02-22 Thread Camilo Aguilar
mod_security on Apache :) On Fri, 23 Feb 2007 04:23 + (GMT Standard Time), Hugh Gibson < [EMAIL PROTECTED]> wrote: > Web Applications Firewall This looks like the beast - made by Imperva: http://www.imperva.com/docs/DS_SecureSphere_WAF0107LK.pdf Can filter HTTP requests as well, ensuring

Re: [qooxdoo-devel] Firewall filtering of scripts ?

2007-02-22 Thread Hugh Gibson
> Web Applications Firewall This looks like the beast - made by Imperva: http://www.imperva.com/docs/DS_SecureSphere_WAF0107LK.pdf Can filter HTTP requests as well, ensuring compliance etc. We might be running into this with our POST requests that don't send form-encoded data but send a JSON-f

Re: [qooxdoo-devel] Input caret missing in Firefox 2

2007-02-22 Thread Hugh Gibson
> All in all, there could be considerable side effects. It would be > better to create a big fat pointer to a FAQ entry containing the > workaround. I agree with this. In our case we have an editor which we intend to move to a tab in the main application. It's in a dialog at the moment. So we

Re: [qooxdoo-devel] Firewall filtering of scripts ?

2007-02-22 Thread Hugh Gibson
> We suspect that there is a firewall objecting to the content. There > is an "eval" call in it which might trigger a filtering rule. We've tracked this down to the strings like "Msxml2.XMLHTTP" specifying the ActiveXObject used for XMLHTTPRequest. If they're split like this: "Msxml2" + ".XML

Re: [qooxdoo-devel] Problem with keyup event on TextField

2007-02-22 Thread Oliver Koch
Hi Zindel, try to blur with edValue.blur() as first call in changeValue That should work, had a similar problem myself. Oliver Koch On Thu, Feb 22, 2007 at 12:08:20AM -0800, dperez wrote: > > Hi Zindel, > > Search the wiki for recent changes relative to keyboard handling. > > > zindel wrote

Re: [qooxdoo-devel] Firewall filtering of scripts ?

2007-02-22 Thread Camilo Aguilar
dperez , Web Applications Firewall On 2/22/07, dperez <[EMAIL PROTECTED]> wrote: Hi, I don't see the relationship between eval() and firewalls. Hugh Gibson wrote: > > Has anyone experienced a corporate firewall filtering out Javascript > files? > > We're trying to logon to our server from a

Re: [qooxdoo-devel] Firewall filtering of scripts ?

2007-02-22 Thread dperez
Hi, I don't see the relationship between eval() and firewalls. Hugh Gibson wrote: > > Has anyone experienced a corporate firewall filtering out Javascript > files? > > We're trying to logon to our server from a computer within a company, and > getting a problem in that one of our helper javas

Re: [qooxdoo-devel] Input caret missing in Firefox 2

2007-02-22 Thread Andreas Junghans
Hi, Am 22.02.2007 um 15:00 schrieb [EMAIL PROTECTED]: > Sebastian Werner <[EMAIL PROTECTED]> writes: > >> setOverflow has some side-effects in gecko and only works well >> when you >> don't use min/max width/height. Because of this I don't think we can >> incorporate this easily into the framew

Re: [qooxdoo-devel] Input caret missing in Firefox 2

2007-02-22 Thread Sebastian Werner
[EMAIL PROTECTED] schrieb: > Sebastian Werner <[EMAIL PROTECTED]> writes: > >> setOverflow has some side-effects in gecko and only works well when you >> don't use min/max width/height. Because of this I don't think we can >> incorporate this easily into the framework. A induvidual fix in each

Re: [qooxdoo-devel] Input caret missing in Firefox 2

2007-02-22 Thread Derrell . Lipman
Sebastian Werner <[EMAIL PROTECTED]> writes: > setOverflow has some side-effects in gecko and only works well when you > don't use min/max width/height. Because of this I don't think we can > incorporate this easily into the framework. A induvidual fix in each > situation might be better. In t

Re: [qooxdoo-devel] Input caret missing in Firefox 2

2007-02-22 Thread Sebastian Werner
setOverflow has some side-effects in gecko and only works well when you don't use min/max width/height. Because of this I don't think we can incorporate this easily into the framework. A induvidual fix in each situation might be better. Sebastian Hugh Gibson schrieb: >> e.setOverflow('auto'

Re: [qooxdoo-devel] Input caret missing in Firefox 2

2007-02-22 Thread Hugh Gibson
> e.setOverflow('auto'); This is the critical item. And it works in our dialog, where we have a group box, grid layout, then the text items. Thanks. I've created http://qooxdoo.org/documentation/snippets/show_caret_in_dialogs_in_ff as my contribution to reducing the load for the mailing list

[qooxdoo-devel] Firewall filtering of scripts ?

2007-02-22 Thread Hugh Gibson
Has anyone experienced a corporate firewall filtering out Javascript files? We're trying to logon to our server from a computer within a company, and getting a problem in that one of our helper javascript files on the login page is coming up empty. It's fine from here. We suspect that there i

Re: [qooxdoo-devel] Input caret missing in Firefox 2

2007-02-22 Thread dperez
I remember that Andreas Ecker (or mabye someone else), told me the trick in this forum some months ago. I tried it and it worked. Now I'm not able to find it. I have this code for avoiding the bug: var e = new qx.ui.layout.VerticalBoxLayout; e.setWidth('100%'); e.setHeight('100%'); e.se

Re: [qooxdoo-devel] Input caret missing in Firefox 2

2007-02-22 Thread Hugh Gibson
> Search the archives in this forum. I know there is a workaround. Yes, that's in the first message I posted in this thread. It's for qooxdoo 0.1 though... I'll look at it when I get a chance. Hugh - Take Surveys. Earn C

Re: [qooxdoo-devel] Input caret missing in Firefox 2

2007-02-22 Thread dperez
Search the archives in this forum. I know there is a workaround. Dietrich Streifert wrote: > > This is a long standing bug in FireFox which will be fixed in FireFox 3: > > https://bugzilla.mozilla.org/show_bug.cgi?id=167801#c76 > > It's incredible but the bug was reported more then four year

Re: [qooxdoo-devel] Color of selected links inside a tree

2007-02-22 Thread dperez
Found the solution. :-) Create a custom CSS class for the links ... ... and create CSS rules like this: A.tree { color: inherit; } Another solution that works is to subclass qx.ui.basic.Label and override _modifyColor(), but 1st solution is cleaner. dperez wrote: > > Hi all, > > An

Re: [qooxdoo-devel] Set Default Button in Window/Dialog

2007-02-22 Thread Oliver Koch
I found out how to emulate this behaviour by hand. Just add an keypress EventListener to your window like this wnd.addEventListener("keypress", this._onEnter, this); and implement the handler method like this if(e.getKeyIdentifier() == "Enter") { if(e.getKeyIdentifier() == "Enter")

Re: [qooxdoo-devel] qooxdoo + Borland (CodeGear)

2007-02-22 Thread Andreas Ecker
Hi Chris! > [...] > Nice to see qooxdoo starting to become the JS framework of choice for > serious projects -- great work guys! :-) Thanks Chris. I think it is safe to say that qooxdoo's potential has only been leveraged to a very small amount so far. Not only that the framework's support for t

[qooxdoo-devel] Color of selected links inside a tree

2007-02-22 Thread dperez
Hi all, Another tree issue: In this sample, I create a link inside the label: var row = qx.ui.treefullcontrol.TreeRowStructure.getInstance(). standard(' '+myUri+' '+myCaption+' '); The tree appearance in classic.js is this: "tree-element-label" : { setup : function() { th

Re: [qooxdoo-devel] tip: sorting a listview column by a property other than "text"

2007-02-22 Thread dperez
Hi Jason, One good place to share tricks is the FAQ section of the wiki: http://qooxdoo.org/about/faq I have already put some tricks there. Thanks for sharing this with all the community. Priebe, Jason wrote: > > We wanted to display dates in a listview using a MM/dd/ format. > Unfor

Re: [qooxdoo-devel] Problem with keyup event on TextField

2007-02-22 Thread dperez
Hi Zindel, Search the wiki for recent changes relative to keyboard handling. zindel wrote: > > I noticed a weird problem inside the "keyup" event handler. Generally it > works > OK, but only for alpha-numeric symbols. I.e. if I press something of: > "';:<> > etc., the getComputedValue() meth

Re: [qooxdoo-devel] Column width in treefullcontrol

2007-02-22 Thread dperez
Thanks Derrell for you answer. I need the horizontal spacer for having left aligned the additional column. That's because the widthd of the contents at the left of the additional column isn't fixed, it depends on the level of indentation and the width of the left label. I think that current des