Re: [qooxdoo-devel] SelectBox set selection

2010-04-28 Thread rsantiagopaz
ReHa (sorry my poor english), try something like this modification of your example: var form = new qx.ui.form.Form(); // Title: var title = new qx.ui.form.TextField(); form.add(title, Title, null, Title); .. // Selection: var selectBox = new qx.ui.form.SelectBox(); form.add(selectBox,

Re: [qooxdoo-devel] SelectBox set selection

2010-04-29 Thread rsantiagopaz
I took the time to build a solution only including the id's in a bidirectional way. I guess that's the thing you want to have, right? http://tinyurl.com/2v28sn2 beautiful. This is what I was looking for. ..Was in front of my eyes.. Thanks you Martin -- View this message in context:

[qooxdoo-devel] What mean Access: internal

2010-04-29 Thread rsantiagopaz
(sorry my english..) What mean Access: internal, for example, in the qx.ui.form.Form's getItems() method. Can I use normally this method, from a instance of this class? if can't, how can access using a loop to the form widgets managed for qx.ui.form.Form? -- View this message in context:

[qooxdoo-devel] little problem migrating SelectBox 1.0.1 - 1.1

2010-05-04 Thread rsantiagopaz
Hi. Try this example in the Playground. In the debugger I get multiple errors/warnings like: 462296 qx.ui.form.SelectBox[538]: Setting the selection on disabled 'qx.ui.form.SelectBox' is deprecated: The current behavior will change from doing nothing to selecting the given items. I can't

Re: [qooxdoo-devel] little problem migrating SelectBox 1.0.1 - 1.1

2010-05-04 Thread rsantiagopaz
Sorry. Now I find previous thread with the same topic. Forget this. -- View this message in context: http://qooxdoo.678.n2.nabble.com/little-problem-migrating-SelectBox-1-0-1-1-1-tp5003541p5003585.html Sent from the qooxdoo mailing list archive at Nabble.com.

[qooxdoo-devel] multiline cells in Tables

2010-05-05 Thread rsantiagopaz
(sorry the english..) well, some little questions or comments. 1) I was reading about Html cellrenderers, rich labels, HeighForWidth, and any other topics I suppose related, but I still cannot understand if is posible have multiline cells on Tables, with auto-height in every row related to

Re: [qooxdoo-devel] passing context to form validation callbacks

2010-05-07 Thread rsantiagopaz
In the mean time, you can use qx.lang.Function.bind to set the context of your validator function. very good. With this problem I use this rustic solution for example: var context = this; var userNameValidator = function() { context.debug(demo); return true; } manager.add(username,

Re: [qooxdoo-devel] multiline cells in Tables

2010-05-07 Thread rsantiagopaz
Very good Derrel, thanks. About the 3, yes, I thought in the same way. But by curiosity I need to know if it were predicted in the controllers design. -- View this message in context: http://qooxdoo.678.n2.nabble.com/multiline-cells-in-Tables-tp5009996p5019321.html Sent from the qooxdoo mailing

Re: [qooxdoo-devel] Set open property of tree item.

2010-05-10 Thread rsantiagopaz
works with tree.getRoot().getChildren()[0].setOpen(true); I think Item1 and tree.getRoot().getChildren()[0] are not reference to the same folder widget. I think the controller reinterpret treeData[0] like a model, and build other nodes. But I am not sure about this conclusion... (sorry the

[qooxdoo-devel] about Popup and ContextMenu

2010-05-10 Thread rsantiagopaz
Hi. I have this example. Try in the Playground. Click the button, then right click in the TextArea. The contextmenu appear behind the Popup. I need some tip or little help about how control the the overlapping between Popup and ContextMenu. I need ContextMenu appear upon Popup. var doc =

Re: [qooxdoo-devel] How to select an item in selectbox?

2010-05-10 Thread rsantiagopaz
yes, try var list = [{name: Kansas, id: 1},{name: Arizona, id: 2}]; var selectBox = new qx.ui.form.SelectBox(); var model = qx.data.marshal.Json.createModel(list); var controller = new qx.data.controller.List(model, selectBox, name); this.getRoot().add(selectBox);

Re: [qooxdoo-devel] How to select an item in selectbox?

2010-05-10 Thread rsantiagopaz
check the example http://tinyurl.com/2v28sn2 -- View this message in context: http://qooxdoo.678.n2.nabble.com/How-to-select-an-item-in-selectbox-tp5029330p5032629.html Sent from the qooxdoo mailing list archive at Nabble.com.

Re: [qooxdoo-devel] about Popup and ContextMenu

2010-05-10 Thread rsantiagopaz
Forget it. Now I know de zindex function. -- View this message in context: http://qooxdoo.678.n2.nabble.com/about-Popup-and-ContextMenu-tp5032208p5032869.html Sent from the qooxdoo mailing list archive at Nabble.com.

Re: [qooxdoo-devel] How to select an item in selectbox?

2010-05-13 Thread rsantiagopaz
try var list = [{name: Arizona, id: 1},{name: Kansas, id: 2}]; var selectBox = new qx.ui.form.SelectBox(); var model = qx.data.marshal.Json.createModel(list); var controller = new qx.data.controller.List(model, selectBox, name); this.getRoot().add(selectBox); var data = {state:2}; var

Re: [qooxdoo-devel] How to avoid the cell editor on a double click?

2010-05-16 Thread rsantiagopaz
Can I somehow prevent the focus indicator to jump down to the next line? Try with this class instead Qooxdoo original class (change pediatras.controles.table.Table with your correct namespace) qx.Class.define(pediatras.controles.table.Table, { extend : qx.ui.table.Table,

Re: [qooxdoo-devel] integrate contrib

2010-05-19 Thread rsantiagopaz
But I can't use the Dialog library. For example, if I add this line to my application.js (same like de Demo application) dialog.Dialog.init(); all my application dissapear from the browser. Nothing happens. I compile, the warning is show, but the application dont run. If I use this only line

Re: [qooxdoo-devel] integrate contrib

2010-05-19 Thread rsantiagopaz
Thanks for all. Some your comments made me think about some wrong settings in my Eclipse. Now is working all. I suppose this warning: INITIALIZING: PRUEBA

Re: [qooxdoo-devel] integrate contrib

2010-05-20 Thread rsantiagopaz
I understand you thron7-2, using the quiet mode. But I meant another thing, please sorry. I try reformulate better the question: Which is the standard or correct form to structure my project and which is the correct form to write correctly my config.json, Manifest.json, etc, for add any number of

[qooxdoo-devel] Form controller and DateField

2010-05-21 Thread rsantiagopaz
I have this little example. In target2model function, which is the paramet1's data type? I can't do any data model transformation, because I can't detect the correct data type. I was trying with any qooxdoo functions(qx.dev.Debug.*, qx.util.Serializer.*, etc) or others tricks but I cant detect.

Re: [qooxdoo-devel] Form controller and DateField

2010-05-21 Thread rsantiagopaz
this is the correct example: var doc = this.getRoot(); var form = new qx.ui.form.Form(); var txtName = new qx.ui.form.TextField(); form.add(txtName, Name, null, name); var txtDate1 = new qx.ui.form.DateField(); txtDate1.setValue(new Date()); form.add(txtDate1, Date, null,

Re: [qooxdoo-devel] Form controller and DateField

2010-05-21 Thread rsantiagopaz
Forget this. Please sorry. I detected my mistake. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Form-controller-and-DateField-tp5086263p5086592.html Sent from the qooxdoo mailing list archive at Nabble.com.

[qooxdoo-devel] Problem with focus, Window and Popup

2010-05-22 Thread rsantiagopaz
Hi. I have this little problem controlling the focus between windows and popups. Try this example. When click on Close popup button, why the focus return to Show popup button, but not the window? Really, the focus return to window, but the window's title bar remains white, not blue. When click

[qooxdoo-devel] focus signal in the Table widget

2010-11-10 Thread rsantiagopaz
Qooxdoo Developers: i want to ask earnestly consider the posibility to add a signal focus to the Table object. in some of my Qooxdoo programs I use many Tables in a single screen and is a very difficult for the user identify wich table have the focus. I try adding an indicator, but is a

Re: [qooxdoo-devel] Drag Drop: permit for container but deny when over a child

2010-11-16 Thread rsantiagopaz
Im not sure, but try e.stopPropagation() in the child's drop event listener -- View this message in context: http://qooxdoo.678.n2.nabble.com/Drag-Drop-permit-for-container-but-deny-when-over-a-child-tp5741153p5744590.html Sent from the qooxdoo mailing list archive at Nabble.com.

Re: [qooxdoo-devel] focus signal in the Table widget

2010-11-16 Thread rsantiagopaz
sadly my knowledge about decorators, styles, css and related themes is very poor (like my english).. I was trying, every month I trying, but I cant detect how draw that blue ghost around de widgets borders But thanks your time panyasan. -- View this message in context:

Re: [qooxdoo-devel] focus signal in the Table widget

2010-11-18 Thread rsantiagopaz
thank yoy very much alex, this is a perfect solution for my problem. For curiosity I need ask other question: Is posible, manipulating decorators, appareances files (or programatically) in a easy way, get exactly the same focus signal like the qx.ui.form.List widget, for example? With yout

Re: [qooxdoo-devel] Drag Drop: permit for container but deny when over a child

2010-11-18 Thread rsantiagopaz
I was work in some similar. But maybe I am missunderstanding you, because the english. With some little example maybe I will understand better. Or try this little example. Drag First label on container or Second label var doc = this.getRoot(); var label1 = new qx.ui.basic.Label(First label);

[qooxdoo-devel] 2 little question about List

2010-11-18 Thread rsantiagopaz
with this little example I need ask 2 questions: 1) First, you must double-click in all 15 items from the first list. Observe the behavior. Why second and third list have different behavior? Is only for curiosity. I was a problem until I detect this little extrange behavior. 2) What is the

Re: [qooxdoo-devel] 2 little question about List

2010-11-18 Thread rsantiagopaz
thank you Daniel. About 2, yes, I know how work with that variant. My objective with this simplified example is to learn work correctly with all fireEvents, and particularly learn to avoid this error in dblclick, for example. I figure I must use the 'args' third parameter to initialize the Mouse

Re: [qooxdoo-devel] 2 little question about List

2010-11-18 Thread rsantiagopaz
I read that. Early read this example too http://www.mail-archive.com/qooxdoo-devel@lists.sourceforge.net/msg27791.html I figure my code must be similar. I procede to trial-and-error I try all variants list1.fireEvent(dblclick, qx.event.type.Mouse, [{}, list1, list1, false, true]);

[qooxdoo-devel] question about qx.ui.list.List

2011-05-05 Thread rsantiagopaz
Only for curiosity: Why virtualComboBox and virtualSelectBox work with qx.ui.list.List, not with a qx.ui.form.VirtualListBox or something. I think is very useful virtual paradigm velocity, AND form work. For example I use the qx.ui.form.ComboBox and the qx.ui.form.List within him

Re: [qooxdoo-devel] question about qx.ui.list.List

2011-05-07 Thread rsantiagopaz
thanks your answer. I try again: I can use VirtualComboBox and VirtualSelectBox with a qx.ui.form.Form. I can't use virtual List with a qx.ui.form.Form. Why? Why virtual List is defined outside qx.ui.form ? Why a qx.ui.form.VirtualList does not exist? -- View this message in context:

[qooxdoo-devel] question about qx.ui.tree.VirtualTree

2011-10-18 Thread rsantiagopaz
Hi I am working with qx.ui.tree.VirtualTree. Good widget. But ¿How i can select (programmatically) the parent node of actually selected node? I get tree.getSelection().getItem(0), but, how I get the parent? What about qx.ui.tree.VirtualTreeItem, this is used for something? Thanks (sorry my

Re: [qooxdoo-devel] question about qx.ui.tree.VirtualTree

2011-10-19 Thread rsantiagopaz
Unfortunately, for the VirtualTree there is no parent navigation (maybe apart from .openNodeAndParents). All has to be done on the model. What you can do is get the model at the beginning, traverse it, and add parent references to each node you visit. When you then work with model nodes, you

[qooxdoo-devel] Virtual SelectBox Question

2011-12-15 Thread rsantiagopaz
little question: (sorry the english) Why VirtualSelectBox, from qx.ui.form namespace, don't have any interface for work with qx.ui.form.Form together. This is a temporal situation or not thanks -- View this message in context:

[qooxdoo-devel] help with fireEvent

2012-04-22 Thread rsantiagopaz
Hi. I need a little help, I want fire Esc keypress event, for example, in textfield by code. What is wrong with this example (txtBuscar is a qx.ui.form.TextField). Is this the correct use of fireEvent(keypress...) ?, please give me some help about var evt = document.createEvent(KeyboardEvent);

Re: [qooxdoo-devel] help with fireEvent

2012-04-28 Thread rsantiagopaz
now I get the point. Thank you -- View this message in context: http://qooxdoo.678.n2.nabble.com/help-with-fireEvent-tp7489036p7508562.html Sent from the qooxdoo mailing list archive at Nabble.com. -- Live Security

[qooxdoo-devel] parent nodes and qx.ui.tree.VirtualTree

2012-06-01 Thread rsantiagopaz
(sorry my english) Hi. I'm working with a qx.ui.tree.VirtualTree, and I need add some parent node reference to each node. I'm trying with this example (below) but i get problems and I cant fix the problem. Please give me some little little example about how work with parent references. I cant

Re: [qooxdoo-devel] Icons and qx.ui.tree.VirtualTreeItem

2012-08-17 Thread rsantiagopaz
...I cant believe it... please forget this, sorry, now I found the setIconOptions and others. Im sorry, 5 hours investigation and excercise and I cant see... -- View this message in context: http://qooxdoo.678.n2.nabble.com/Icons-and-qx-ui-tree-VirtualTreeItem-tp7581011p7581012.html Sent from

[qooxdoo-devel] question about popup and qx.ui.tree.VirtualTree

2012-09-08 Thread rsantiagopaz
Hi. sorry my english Im working with qx.ui.tree.VirtualTree. And I need open a popup relative to a node, with popup.placeToWidget(node, false);. How can I get the selected node widget? (or with placeToElement or placeToPoint, but how?) thanks -- View this message in context:

[qooxdoo-devel] Many problems with firebug, 2.x version.

2012-11-20 Thread rsantiagopaz
Hi. From the qooxdoo 2.x version, I have problems with firebug. I get dozens, hundreds of different and variable warnings and errors when the navigator is loading the compiled applicattion (source-all and source, not with build). I use windows xp, firefox 16.0.2, firebug 1.10.6, xampp 1.8.1. Does

Re: [qooxdoo-devel] Many problems with firebug, 2.x version.

2012-11-22 Thread rsantiagopaz
- But these images appear to be fom different runs of the application. Thats the point. Everytime I press F5 or click reload, I get different behavior. Sometimes run ok without any warning or error, but 80-90% I get some error. Sometimes a few, sometimes hundreds, sometimes only warnings. - What

Re: [qooxdoo-devel] Many problems with firebug, 2.x version.

2012-11-22 Thread rsantiagopaz
- this only means something with the runtime environment (web server, browser, firebug, ...) takes an effect. really, I suspect all this is a firebug problem. But I need to ask you, to this forum. Maybe somebody known something about. It is also strange that this happens only with 2.x versions.

Re: [qooxdoo-devel] How to call functions over eval() after build?

2013-06-28 Thread rsantiagopaz
tuebben, maybe you need use member class. Put your vars and functions at member section, and use eval(this.functionExample()) or eval(if (this.row1[0] == this.row2[0]) {if (this.row1[1] == this.row2[1]) {if (this.row1[4] == this.row2[4]) {if (this.row1[2] == this.row2[2]) {this.resultado = 0;}

[qooxdoo-devel] Question about scroll in mobile app

2013-06-28 Thread rsantiagopaz
Hi. A little question. Check this example: http://tinyurl.com/pogtvwj I need scroll only the list, but I need fixed form position at top, not scrolling. How can do this? What I need use? Any example or tips. Iam trying with qx.ui.mobile.container.ScrollComposite, Composite, etc, but I cant do.

Re: [qooxdoo-devel] Question about scroll in mobile app

2013-06-29 Thread rsantiagopaz
thank you very much czuendorf. This is the solution. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Question-about-scroll-in-mobile-app-tp7584012p7584020.html Sent from the qooxdoo mailing list archive at Nabble.com.

[qooxdoo-devel] Scrolling qx.ui.mobile.form.SelectBox items

2013-06-29 Thread rsantiagopaz
Hi. I have a qx.ui.mobile.form.SelectBox in a form, and the SelectBox have many items ( 50-100, more than the screen can show). Why I cant scrolling the list? It's normal behavior? I was trying another widgets replacing SelectBox, a button + picker for example, but I cant add buttons to forms.

Re: [qooxdoo-devel] Scrolling qx.ui.mobile.form.SelectBox items

2013-06-30 Thread rsantiagopaz
- are you using the current version? Yes. I just needed to confirm that this is normal SelectBox behavior, this is my first mobile app. I will try the altenatives. Thanks. -- View this message in context:

Re: [qooxdoo-devel] fireEvent ¿?

2013-07-07 Thread rsantiagopaz
Sorry, I'm seeing quickly your example. I don't understand what the error. In general terms, it seems good, according to my modest knowledge. Where is the lanza_evento routine used? Do you use it from the outside, from the class instance? Where loads this.evento then? Not is if I play well, but

Re: [qooxdoo-devel] fireEvent ¿?

2013-07-07 Thread rsantiagopaz
I forgot, personally I would do rpc.callAsyncListeners after assigning listeners, not before. Not is if this will have any importance. Me olvidaba, personalmente haria rpc.callAsyncListeners despues de asignar los listeners, no antes. No se si esto tendrá alguna importancia. saludo. -- View

Re: [qooxdoo-devel] fireEvent ¿?

2013-07-07 Thread rsantiagopaz
but tinyurl.com/7kywber show nothing, jesus, only standard playground. Check the link. Hablo español y aunque no ando seguido por aca o consultando esta cuenta de gmail cuando se necesite algo no hay problema en usarlo. saludo -- View this message in context:

[qooxdoo-devel] mobile picker's height

2013-07-07 Thread rsantiagopaz
Hi. Check this example: http://tinyurl.com/kdcbmhh If I have many items in the picker (50-100 for example), how can I increase the picker height, for display more items and expand the picker touch zone. thanks for everything. -- View this message in context:

Re: [qooxdoo-devel] mobile picker's height

2013-07-08 Thread rsantiagopaz
- the picker's height is not adjustable, yet. but I mean some tricky solution. I was trying, I suspect that I am about to find it, but still not yet. - Could you open an enhancement request at bugs.qooxdoo.org Im sorry czuendorf, my english is very poor, I don't feel qualified to do this.

[qooxdoo-devel] about mobile's popup

2013-07-14 Thread rsantiagopaz
A little question. Mobile dialog popup's behavior is not traditional (automatic close/hide when click/tap outside). ¿This traditional behavior will be added in the future? ¿How I can now simulate traditional behavior? Some tip? I was trying but I cant. Thanks -- View this message in context:

[qooxdoo-devel] about back button in mobile devices

2013-07-14 Thread rsantiagopaz
A little question. I was adding some code to my mobile app to catch back button from devices (tablet/cellphone/etc), with window hashchange event, etc, etc. And link it to navigationPage' back button for example, hidding dialogs, etc, etc. My question: ¿ In the future, some this behavior will be

Re: [qooxdoo-devel] about mobile's popup

2013-07-14 Thread rsantiagopaz
- Mobile dialog popup's behavior... Sorry, a mistake. I mean Anchor Popup and Anchor Menu for example -- View this message in context: http://qooxdoo.678.n2.nabble.com/about-mobile-s-popup-tp7584125p7584127.html Sent from the qooxdoo mailing list archive at Nabble.com.

Re: [qooxdoo-devel] about mobile's popup

2013-07-17 Thread rsantiagopaz
thanks czuendorf, that will work. -- View this message in context: http://qooxdoo.678.n2.nabble.com/about-mobile-s-popup-tp7584125p7584140.html Sent from the qooxdoo mailing list archive at Nabble.com. -- See

[qooxdoo-devel] maybe little little bug in qooxdoo 3

2013-07-22 Thread rsantiagopaz
Hi, Im migrating some code to version 3 (beautiful, great). check this little mobile example http://tinyurl.com/mf3hgqd http://tinyurl.com/mf3hgqd Why form's labels dont show. How I can fix this. (SinglePlaceholder work fine) Thanks. -- View this message in context:

[qooxdoo-devel] maybe another little bug

2013-07-22 Thread rsantiagopaz
I am experiencing another strange behavior. Im trying reproduce here http://tinyurl.com/ke2xsqm http://tinyurl.com/ke2xsqm but is not the same behavior I have. In this playground example, modal is not working. But in my application (compile source, source-all or build), the first time I tap in

[qooxdoo-devel] maybe little mobile bug (Menu, SelectBox)

2013-07-22 Thread rsantiagopaz
A little problem. Try this example http://tinyurl.com/ktufxa8 Click options and click next page: The tap in the menu item generate a tap in the selectbox. I was trying stopPropagation (or something) but I cant. (Keep trying until the problem appear. Im using a 9'' tablet for test). -- View this

Re: [qooxdoo-devel] maybe little mobile bug (Menu, SelectBox)

2013-07-23 Thread rsantiagopaz
- Can you check if this behavior still occurs in 3.0? Yes, these 3 very small inconveniences I comment is from migration 2.1.1 - 3.0. With 2.1.1 dont happend. I use and test with PC Windows + Crome and tablet Android + Chrome. I understand that these are very small problems, I just only wanted to

Re: [qooxdoo-devel] about back button in mobile devices

2013-07-23 Thread rsantiagopaz
thanks you Wittemann. I will studing and be looking at this. -- View this message in context: http://qooxdoo.678.n2.nabble.com/about-back-button-in-mobile-devices-tp7584126p7584188.html Sent from the qooxdoo mailing list archive at Nabble.com.

[qooxdoo-devel] maybe bug in mobile 3.x

2013-08-21 Thread rsantiagopaz
(sorry the english) finally I can reproduce a problem I get in my projects. Try this code in a mobile project, not Playground. When you select a item in selectbox, and open a Popup, this popup lost the modal if you tap/click outside popup. If you don't select a item first, the bug don't happen.

Re: [qooxdoo-devel] maybe bug in mobile 3.x

2013-08-21 Thread rsantiagopaz
- As far as I know it does not occur on mobile devices. I forget mention, with tablet Android and Chrome is the same behavior too. - Could you please open a bug at bugzilla.qooxdoo.org Please someone can do it for me. Maybe you czuendorf. Thanks -- View this message in context:

Re: [qooxdoo-devel] Problematic popup

2013-08-25 Thread rsantiagopaz
- I have my own custom widget I want to show and hide. In my real code I have added this custom widget inside the popup. Could I still use MenuButton in this case? beautiful dilemma. Sorry my little interference (and sorry my english). I (prefer) think there are (basically) 3 groups of this

[qooxdoo-devel] question about problem with command and table

2013-08-26 Thread rsantiagopaz
I reproduce a little problem I have in my projects, from early Qoxdoo versions and 3.x included. Try this http://tinyurl.com/l6cumlo , select a item from the list, and call popup with any of this actions: 1) double click in item list 2) using right click mouse and context menu 3) press Enter key

[qooxdoo-devel] question about a mobile project behavior

2013-08-27 Thread rsantiagopaz
Hi. I will try to explain a 'problem' that I have. My english is very limited. I do a simplified example with this little modification to mobile default project (generated with create-application.py). Try this code in a default mobile project, run, go to Page 2 and press the hardware Back button

Re: [qooxdoo-devel] stuck with qx.ui.list.List

2013-08-29 Thread rsantiagopaz
use this Gregory list.getSelection().push(a.getItem(0)); instead of list.setSelection(a.getItem(0)); or list.getSelection().removeAll() for no selection -- View this message in context: http://qooxdoo.678.n2.nabble.com/stuck-with-qx-ui-list-List-tp7584489p7584503.html Sent from the qooxdoo

Re: [qooxdoo-devel] question about a mobile project behavior

2013-08-29 Thread rsantiagopaz
thanks for your time Wagner. This is the most important question, I need resolve somehow. -- View this message in context: http://qooxdoo.678.n2.nabble.com/question-about-a-mobile-project-behavior-tp7584484p7584504.html Sent from the qooxdoo mailing list archive at Nabble.com.

Re: [qooxdoo-devel] question about problem with command and table

2013-08-29 Thread rsantiagopaz
http://tinyurl.com/pqvzhmt Perfecto. So easy!. ...Sometimes the brain is blocked.. -- View this message in context: http://qooxdoo.678.n2.nabble.com/question-about-problem-with-command-and-table-tp7584482p7584506.html Sent from the qooxdoo mailing list archive at Nabble.com.

Re: [qooxdoo-devel] stuck with qx.ui.list.List

2013-08-29 Thread rsantiagopaz
warning, because if you use setSelection for set other arrays, if you add listeners previously (like this code below), the events lost. var list = new qx.ui.list.List(model); //Pre-Select Item No 20 list.getSelection().push(model.getItem(20)); //log selection changes

[qooxdoo-devel] question about list and qx.ui.mobile.list.renderer

2013-09-10 Thread rsantiagopaz
Hi (sorry the english) I can't understand the qx.ui.mobile.list.renderer. Check this little example: http://tinyurl.com/p8djnxw I need a TextField for each label in extras, for each item in the list. Why the item's title are unique, but the item itself is not unique? Why the TextFields and

Re: [qooxdoo-devel] question about list and qx.ui.mobile.list.renderer

2013-09-11 Thread rsantiagopaz
I understand you. I use your method (the correct method) in a previous project with a qx.ui.list.List. In that previous project the number of widgets injected is fixed. But in this project the number is variable, and that information is in the model. How I get the information in my custom

Re: [qooxdoo-devel] question about list and qx.ui.mobile.list.renderer

2013-09-13 Thread rsantiagopaz
thank you very much Christopher -- View this message in context: http://qooxdoo.678.n2.nabble.com/question-about-list-and-qx-ui-mobile-list-renderer-tp7584593p7584612.html Sent from the qooxdoo mailing list archive at Nabble.com.

[qooxdoo-devel] question about qx.ui.mobile.layout.HBox

2013-09-19 Thread rsantiagopaz
Hi (sorry the english) I have 2 little problems with this basic example: http://tinyurl.com/lfvstn5 1) I was trying all flex/align/etc. posible combinations. I need number fields more narrow. The maxLenght is set to 3 but the field width is excessive. I can't get shorter fields. The intention

Re: [qooxdoo-devel] question about qx.ui.mobile.layout.HBox

2013-09-20 Thread rsantiagopaz
perfect. Thank you very much. About the 2) I was try searching in bugzilla, I don't found any similar, maybe is a little bug. -- View this message in context: http://qooxdoo.678.n2.nabble.com/question-about-qx-ui-mobile-layout-HBox-tp7584622p7584630.html Sent from the qooxdoo mailing list

Re: [qooxdoo-devel] Get list item value from a List

2013-10-01 Thread rsantiagopaz
if every listitem has a model property, with list.getChildren()[0].getModel() you get the value from the first listitem. And with list.getModelSelection().getItem(0) or list.getSelection()[0].getModel() you get the value from the first selected listitem. -- View this message in context:

Re: [qooxdoo-devel] Search As You Type List?

2013-10-01 Thread rsantiagopaz
maybe this is a little adaptation http://tinyurl.com/n4q32o6 (sorry the english) -- View this message in context: http://qooxdoo.678.n2.nabble.com/Search-As-You-Type-List-tp7584698p7584701.html Sent from the qooxdoo mailing list archive at Nabble.com.

Re: [qooxdoo-devel] VirtualSelectBox that displays calculated labed

2013-10-10 Thread rsantiagopaz
try this http://tinyurl.com/m6esngb -- View this message in context: http://qooxdoo.678.n2.nabble.com/VirtualSelectBox-that-displays-calculated-labed-tp7584749p7584751.html Sent from the qooxdoo mailing list archive at Nabble.com.

Re: [qooxdoo-devel] qx mobile: enable to use selectBox inside popup window

2013-10-15 Thread rsantiagopaz
something like this: var model = [{id : 1, label : English}, {id : 2, label : Français}]; var labels = []; for (var x in model) labels.push(model[x].label); var sel = new qx.ui.mobile.form.SelectBox(); sel.setModel(new qx.data.Array(labels)); sel.addListener(changeSelection, function(e){ var

Re: [qooxdoo-devel] Replace cellRenderer and how to avoid numeric grouping

2013-11-03 Thread rsantiagopaz
try this: tbl is the table. var numberformatMontoEs = new qx.util.format.NumberFormat(es).set({groupingUsed: false, maximumFractionDigits: 2, minimumFractionDigits: 2}); var tableColumnModel = tbl.getTableColumnModel(); var renderer = new qx.ui.table.cellrenderer.Number();

Re: [qooxdoo-devel] Replace cellRenderer and how to avoid numeric grouping

2013-11-03 Thread rsantiagopaz
Im sorry, I misunderstand your question. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Replace-cellRenderer-and-how-to-avoid-numeric-grouping-tp7584881p7584886.html Sent from the qooxdoo mailing list archive at Nabble.com.

Re: [qooxdoo-devel] Replace cellRenderer and how to avoid numeric grouping

2013-11-03 Thread rsantiagopaz
maybe some like this: http://tinyurl.com/k99cu2z -- View this message in context: http://qooxdoo.678.n2.nabble.com/Replace-cellRenderer-and-how-to-avoid-numeric-grouping-tp7584881p7584887.html Sent from the qooxdoo mailing list archive at Nabble.com.

[qooxdoo-devel] question about QxJqPlot

2013-12-18 Thread rsantiagopaz
Hi (sorry the english) I was using QxJqPlot. Beautiful. I not have any problem. But now I want to catch the jqplotDataClick event (for example), from JqPlot library, to add some extra functionality. This event is not wrapped in QxJqPlot. I was reading and studing the library and trying use

[qooxdoo-devel] very little question about DateField

2014-08-26 Thread rsantiagopaz
Hi (sorry my english) Until qooxdoo 1.5 version, DateField behavior, by default, is select all text inside when get focus (like the TextField with all qooxdoo version). Why DateField not select all text now? Is this a bug? I try change code for this, but I cant, I cant get where is the problem.

Re: [qooxdoo-devel] very little question about DateField

2014-08-27 Thread rsantiagopaz
perfect. Thank you very much Mustafa -- View this message in context: http://qooxdoo.678.n2.nabble.com/very-little-question-about-DateField-tp7586097p7586106.html Sent from the qooxdoo mailing list archive at Nabble.com.

[qooxdoo-devel] little help with programming

2014-08-29 Thread rsantiagopaz
Hi (sorry the english) Somebody can help me with this little question: this is for make my mobile.Drawer + desktop.TabView. http://tinyurl.com/p98d6qj Work fine, I have 1 problem: If I click unselected page, the TabView appear but the page is not selected. If I delete activate event, I get a

Re: [qooxdoo-devel] little help with programming

2014-08-29 Thread rsantiagopaz
well.. i have other problem, the Tab cycle within a page. This will not work. ok forget about. Is there something like Drawer for desktop? Thanks -- View this message in context: http://qooxdoo.678.n2.nabble.com/little-help-with-programming-tp7586112p7586113.html Sent from the qooxdoo mailing

[qooxdoo-devel] window with popup's behavior and withour border, tabView.indexOf bug

2014-08-29 Thread rsantiagopaz
hi (sorry the english) I using qooxdoo 4.0.1, check this example: http://tinyurl.com/p2oyol9 this is my (modest) simulation of Drawer widget + TabView ... For more decent and proper simulation I want hide the graphical window border, and add windows closing when lost focus, get deactivated, etc.

Re: [qooxdoo-devel] window with popup's behavior and withour border, tabView.indexOf bug

2014-08-29 Thread rsantiagopaz
And I also can not hide the window graphical border. How I can get this? -- View this message in context: http://qooxdoo.678.n2.nabble.com/window-with-popup-s-behavior-and-withour-border-tabView-indexOf-bug-tp7586115p7586116.html Sent from the qooxdoo mailing list archive at Nabble.com.

[qooxdoo-devel] table bug

2014-09-05 Thread rsantiagopaz
Hi (sorry the english) check this little variation from Playground table sample. http://tinyurl.com/n684k94 Edit consecutive rows from second column with Enter and numeric keys. Now do the same with boolean column. Why the edit jump 2 rows below? With numeric column work fine, with boolean column

[qooxdoo-devel] table/window little bug?

2014-10-25 Thread rsantiagopaz
Hi. (sorry the english) check this little variation from playground table example http://tinyurl.com/psvd7zw click a table cell and use arrow keys or enter for edit. Now click the background outside window, return to window and try selecting table cell and use arrow and enter key. Why dont

Re: [qooxdoo-devel] table/window little bug?

2014-12-19 Thread rsantiagopaz
Hi. Someone had this problem? I check the example on qooxdoo 4.1 and the problem persist. I have problems in my projects with this one. Is this a known bug? Is there any solution? I dont know how register the bug. tanks On the other hand, I don't want to forget, great 4.1 release. Tanks for your

[qooxdoo-devel] question about qx.Website

2015-03-28 Thread rsantiagopaz
Hi (sorry the english!) I use a HTMLtable within a IFrame for some large listing of things, for printing. I want try using this widget http://demo.qooxdoo.org/4.1/website-api/#Table , instead the HTMLtable. For printing too. Now I can run de qx.Website basic skeleton example application within

Re: [qooxdoo-devel] question about qx.Website

2015-03-30 Thread rsantiagopaz
yes, thank you very much Martin. That should work but I don’t see much of an advantage as the main reason for the table widget would be user interaction. You are right, basically is first time general curiosity about qx.Website, but curiosity about sort/filter capabilities before printing too.

Re: [qooxdoo-devel] question about qx.Website

2015-03-31 Thread rsantiagopaz
Perfect. Thank you again -- View this message in context: http://qooxdoo.678.n2.nabble.com/question-about-qx-Website-tp7586995p7587007.html Sent from the qooxdoo mailing list archive at Nabble.com. -- Dive into the

[qooxdoo-devel] repeated question modal windows bug

2015-08-02 Thread rsantiagopaz
(sorry the english!) Hi, I have this little example http://tinyurl.com/o7dgr73 Use arrow keys, enter, esc, home, end, ..., to move or edit the table. Now click window background, and return to table, try move or edit. This example is with table, but the problem is with everyone widgets. I have

Re: [qooxdoo-devel] repeated question modal windows bug

2015-08-02 Thread rsantiagopaz
Im sorry, I forget: this problem appear too, when web browser lost the focus. For example, my qooxdoo project pop a modal window, then I need to switch to another application, and return to web browser -- View this message in context:

Re: [qooxdoo-devel] please, basic question about rpc-date

2015-08-05 Thread rsantiagopaz
fritz wrote P.S.: You really shouldn't use rpc.callSync() of course, is only a ad-hoc example. Thanks for your time Fritz. Finally I get de Date object. Some like this send, and receive, all Date objects with the proper convertions: qx.io.remote.Rpc.CONVERT_DATES = true;

[qooxdoo-devel] please, basic question about rpc-date

2015-08-04 Thread rsantiagopaz
Hi (sorry the english) Please, I need some little help about a absurd basic question. I really really try understand the Qooxdoo 5.0 Date object converter around Rpc use. For example I use rpc, var rpc = new qx.io.remote.Rpc(services/, comp.Prueba); try { var r =

  1   2   >