Re: [qooxdoo-devel] QxWidget.flushGlobalQueues()

2006-07-21 Thread ACampelo
Til, now it's working perfectly! Thanks. -- View this message in context: http://www.nabble.com/QxWidget.flushGlobalQueues%28%29-tf1968365.html#a5437802 Sent from the qooxdoo-devel forum at Nabble.com. - Take Surveys. E

Re: [qooxdoo-devel] help - Error in SVN Checkout of Qooxdoo

2006-07-20 Thread ACampelo
I'm receveing the same error from SVN. I'm working in a Window XP machine using SmartSVN Foundation 2.0. What I did was downloaded each folder, and not the entire source folder. But the theme folder I still have the error code poped in my screen. I don't know if this error is a kind of time-out

[qooxdoo-devel] Olsson Progress Bar

2006-07-19 Thread ACampelo
I made the download from https://svn.sourceforge.net/svnroot/qooxdoo/trunk/qooxdoo/source of the Olsson'ProgressBar (contributed folder). I try run the Widget, but some files I can't found: - qooxdoo.css - includer.js - demolayout.js Where can I find them? And, where in the code, is the link to

Re: [qooxdoo-devel] QxTextField and Right Alignment

2006-07-19 Thread ACampelo
The best way I found: QxTextField.setStyleProperty('textAlign', 'right'); -- View this message in context: http://www.nabble.com/QxTextField-and-Right-Alignment-tf1967040.html#a5405472 Sent from the qooxdoo-devel forum at Nabble.com. --

Re: [qooxdoo-devel] QxTextField and Right Alignment

2006-07-19 Thread ACampelo
But this doesn't work: QxTextFiedl.setHtmlProperty('style', 'text-align:right'); There's some reason? -- View this message in context: http://www.nabble.com/QxTextField-and-Right-Alignment-tf1967040.html#a5404372 Sent from the qooxdoo-devel forum at Nabble.com. --

Re: [qooxdoo-devel] QxTextField and Right Alignment

2006-07-19 Thread ACampelo
I found a way: QxTextField.setHtmlProperty('dir', 'rtl'); That's it. -- View this message in context: http://www.nabble.com/QxTextField-and-Right-Alignment-tf1967040.html#a5404230 Sent from the qooxdoo-devel forum at Nabble.com. ---

[qooxdoo-devel] QxWidget.flushGlobalQueues()

2006-07-19 Thread ACampelo
If I have a code like this: QxList.hide(); QxAtom.show(); // Where QxAtom is in same position of QxList QxWidget.flushGlobalQueues(); for (var i = 0; i < 300; i++) { } QxAtom.hide(); QxList.show(); QxWidget.flushGlobalQueues(); I can't the see the QxAtom. Nor one little blink. I would like

[qooxdoo-devel] QxTextField and Right Alignment

2006-07-19 Thread ACampelo
Hy, Qooxdoo is really a great farmework. I'm working with him a few weeks, and I'm already making new QxWidgets (like one that I called QxComboTreeView) and other things that are helping us a lot. But, like a regular newbie, sometimes we are in front of simple problems that we can't find a easy

Re: [qooxdoo-devel] International Characters

2006-07-12 Thread ACampelo
Hi Marco, your knowledge was of extreme helps for us! Thank you. In fact, we are working in the VS environment (obviously, with an IIS server). I expect that others Qooxdoo'users working in the same platform can share our experience. First, we change the web.config file: But the problem persi

[qooxdoo-devel] International Characters

2006-07-11 Thread ACampelo
Hi, I have a QxTabViewButton with this declaration: var buttonAgenda = new QxTabViewButton("Agenda de Endere?os"); But instead ot the special character - ? - show, I have a little square in the screen. Searching some information in the forum, I founded the follow Message: http://www.nabble.co

[qooxdoo-devel] QxListViewContentCellWidget

2006-07-10 Thread ACampelo
Hi, I'm needing put a QxCheckBox inside a QxListView column . I founded the following objects: - QxListViewContentCellHtml - QxListViewContentCellIconHtml - QxListViewContentCellImage - QxListViewContentCellLink - QxListViewContentCellText I think that put a Widget inside a QxListView is (yet)

Re: [qooxdoo-devel] QxListView Broken Images Strickes Again

2006-07-06 Thread ACampelo
I forgot ... After I load the source array, I execute a QxListView.update comand! -- View this message in context: http://www.nabble.com/QxListView-Broken-Images-Strickes-Again-tf1903412.html#a5210495 Sent from the qooxdoo-devel forum at Nabble.com. Using Tomcat but need to do more? Need to s

Re: [qooxdoo-devel] QxListView Broken Images Strickes Again

2006-07-06 Thread ACampelo
IE Version: 6.0.2900.2180.xpsp_sp2_gdr.050301-1519. In FF no problems at all too. In Opera don't work. I tested only in the deployment machine. I will test tomorrow in other IE. Didi you fixed the QxImageManager.setCorePath and the blank.gif file? -- View this message in context: http://www

Re: [qooxdoo-devel] QxListView Broken Images Strickes Again

2006-07-06 Thread ACampelo
If I work with iconHTML instead image works very fine! The diference: Config the column var Colunas = { icon : { label : "", width: 24, type : "iconHtml" }, < name: { label : "Nome", width : 350, type : "text", align : "left"} }; Loading content: Linhas.push( { id : { text : nodesXML

[qooxdoo-devel] QxListView Broken Images Strickes Again

2006-07-06 Thread ACampelo
Hi, I am with the classical problem: broken imagens in QxListView. I founded some contents in the forum. Follow instructions, I copied the file "blank.gif" (qooxdoo-0.5.2-dos/images) to an apropriate directory (myapp/images) and corrected the SetCorePath property:

Re: [qooxdoo-devel] Lack of Time to "render" DOM

2006-07-05 Thread ACampelo
Andreas, thanks by your attention. In a first moment, I thinked Qooxdoo like another JS library, but now I'm understanding what really is: a great and wonderful software engineer work to assemble an amazing DOM Framework - like Backbase. Congratulations! Now my doubt loss your sense. I'm studyi

Re: [qooxdoo-devel] Listview Data Value

2006-07-05 Thread ACampelo
Sharmaprateek, I had the same problem yesterday and I solved in this way: First, the code where I load the source array.: for (var i = 0; i < nodesXML.length; i++) { Lines.push( { id : { text : nodesXML[i].childNodes[0].firstChild

[qooxdoo-devel] QxListView Don't Render

2006-07-05 Thread ACampelo
Hi, I'm studiyng Qooxdoo and something strange happens with me. If I change de example file ListView_2.html in the looping where the array is loaded: > for (var i=0; i<15; i++) and the height of the QxListView: > lv.setHeight(200); Everything works fine. BUT, if I change the Loop: > for (va

[qooxdoo-devel] Lack of Time to "render" DOM

2006-06-29 Thread ACampelo
I'm working with a QxTabView inserted into a QxInLine to work inside a traditional DIV. One of the QxTabViewButton is loaded with a traditional HTML TextField: . After window.application.main = function(), I call a JS file with a autocomplete algorithm: InitQueryCode('txtField', 'div_txtField',

[qooxdoo-devel] Add Qx Objects in a DOM Object

2006-06-28 Thread ACampelo
Hi, I?m starting using Qooxdoo and I'm trying solve a little question. I would like to add a QxTabViewPage im my HTML page. I have a with id="div01". I tryed with this (inside a file called test.js): var tf1 = new QxTabView; tf1.set({ left: 20, top: 48, right: 335, bottom: 48 }); var t1_1 = n