Re: [qooxdoo-devel] how to use or integrate socket in qooxdoo

2013-09-09 Thread matteomasina
Where I'm wrong ? I try to intercept the Event from Native object, but this don't fire on message arrives. var ws = new test.WebSocket(); qx.bom.Event.addNativeListener(ws,"message", function(e) { alert("connessione aperta"); }, false); /** * @i

Re: [qooxdoo-devel] how to use or integrate socket in qooxdoo

2013-09-09 Thread matteomasina
Thanks I'm watching for native objects, I hope to find the way, changing this to false in my script doesnt works. Regards Matteo -- View this message in context: http://qooxdoo.678.n2.nabble.com/how-to-use-or-integrate-socket-in-qooxdoo-tp7584526p7584584.html Sent from the qooxdoo mailing lis

Re: [qooxdoo-devel] how to use or integrate socket in qooxdoo

2013-09-09 Thread matteomasina
Hi Andreas thank you a lot, I've created a qooxdoo Window and when on window open event I've created the websocket. Everything is working well. the websocket connects to my server and send the message too !!! Great ! the only problem it's about fire event on messege received. I tried : ws.add

Re: [qooxdoo-devel] how to use or integrate socket in qooxdoo

2013-09-08 Thread matteomasina
Andreas thank you a lot for your help I think I'm really near to the solution. I've tried you code for test, but sorry not works. I'm not so expert in extend object so my questions are : - extending the websocket in the way you show me, how can I use the websocket method to estabilish the connec

Re: [qooxdoo-devel] how to use or integrate socket in qooxdoo

2013-09-07 Thread matteomasina
Hi Andreas, I've posted a sample but for using SimpleIO.js that uses node.js, but I have already my server code working, developed in c#. So that my problem is understand hot to integrate in qooxdoo something similar to this : /var ws = new WebSocket("ws://localhost:3500/test"); ws.ono

Re: [qooxdoo-devel] how to use or integrate socket in qooxdoo

2013-09-04 Thread matteomasina
The software I'm developing has these needed : - cross platform - the possibility of transfer not only text data, but binary data too. so after a while of studying I beleive that the integration of HTML5 websocket should be good ! But in which way I can integrate HTML5 websocket in qooxdoo Deskt

Re: [qooxdoo-devel] how to use or integrate socket in qooxdoo

2013-09-03 Thread matteomasina
Hi guys thank you a lot for your answers, today I'm gonna check for your solutions and I'll tell you the results. In these days I found also this : http://simplapi.wordpress.com/2012/07/02/linking-socket-io-to-qooxdoo/ do you think that could be usefull ? Regards Matteo Masina -- View this me

[qooxdoo-devel] how to use or integrate socket in qooxdoo

2013-09-03 Thread matteomasina
Hi, I'm just developing an application, that uses communication with php backend to get some system informations. Everything working well, but to get the Qooxdoo fronted update, I'm using a timer sending request to the php backend any tot seconds; I would like to improve this so I had the idea to u

[qooxdoo-devel] UploadMgr backend

2013-07-23 Thread matteomasina
Hi I'm trying to use UploadMgr, but I cannot understand how to write my server listening for the file. in these row : var uploader = new com.zenesis.qx.upload.UploadMgr(btn, "localhost"); i put localhost so the file should be write in my www root. but I cannot see any file. Probably I don't und

[qooxdoo-devel] bind menubar to JSON

2013-06-14 Thread matteomasina
Hi is there any way to bind the structure of a menubar to JSON ? Or I have to fill manually ? Regards Matteo Masina -- View this message in context: http://qooxdoo.678.n2.nabble.com/bind-menubar-to-JSON-tp7583875.html Sent from the qooxdoo mailing list archive at Nabble.com.

Re: [qooxdoo-devel] menubar - opening from bottom to top - SOLVED

2013-06-06 Thread matteomasina
Sorry I have solved, If I put my menubar at the botton the menu will open from down to up. regards; -- View this message in context: http://qooxdoo.678.n2.nabble.com/menubar-opening-from-bottom-to-top-tp7583828p7583829.html Sent from the qooxdoo mailing list archive at Nabble.com. ---

[qooxdoo-devel] menubar - opening from bottom to top

2013-06-06 Thread matteomasina
Hi I'm developing an application, and I would like to put my menubar at the bottom of application, is there any way to open the menu' from bottom to top ? regards Matteo Masina -- View this message in context: http://qooxdoo.678.n2.nabble.com/menubar-opening-from-bottom-to-top-tp7583828.html

Re: [qooxdoo-devel] memory used from widget

2013-06-03 Thread matteomasina
Hi thanks to everybody for your answer this is a topic that's very intersting for me. If you have time I would like to go in deep in one idea I have : - if I suppose to don't need the exactly amount of memory used from each widget,but ony an estimate value not so far (we have to define how far is

Re: [qooxdoo-devel] memory used from widget

2013-06-02 Thread matteomasina
damn really ? It's not possible, I cannot believe ! ok I'll try another way to do this ! regards Matteo -- View this message in context: http://qooxdoo.678.n2.nabble.com/memory-used-from-widget-tp7583784p7583799.html Sent from the qooxdoo mailing list archive at Nabble.com. --

Re: [qooxdoo-devel] memory used from widget

2013-06-02 Thread matteomasina
thanks a lot, I'm waiting some elements to start from ! cheers -- View this message in context: http://qooxdoo.678.n2.nabble.com/memory-used-from-widget-tp7583784p7583797.html Sent from the qooxdoo mailing list archive at Nabble.com. --

Re: [qooxdoo-devel] memory used from widget

2013-06-02 Thread matteomasina
no one has idea ? just where to start to understand how many memory a widget is using ? Regards Matteo Masina -- View this message in context: http://qooxdoo.678.n2.nabble.com/memory-used-from-widget-tp7583784p7583795.html Sent from the qooxdoo mailing list archive at Nabble.com.

[qooxdoo-devel] memory used from widget

2013-06-01 Thread matteomasina
Hi I'm devloping a standalone application, I have a lot of object (windows, button etc...) I would like to check the amount of memory used from each widget, to do a sort of task manager, is it possibile to do this ? I don't have any idea from where to start, anyone as any idea or help to begin

[qooxdoo-devel] question about contrib - UploadManager

2013-05-23 Thread matteomasina
hi to everybody, I need help to insert UploadMgr in my application. I have downloaded the latest qoodxoo version, and I'm developing a standalone application. But I have tryied to insert the contrib UploadMgr reading the manual, but I cannot understand how to make. Can someone explain me the ste

[qooxdoo-devel] drag & drop --> from list to image

2013-05-16 Thread matteomasina
Hi, I would like to drag some icon from a list to an image. I have tried a lot of solution but no one is functioning, can you please tell me which is the right way to do this ? regards, Matteo Masina -- View this message in context: http://qooxdoo.678.n2.nabble.com/drag-drop-from-list-to-i

Re: [qooxdoo-devel] ComboBox in a toolbar - SOLVED

2012-03-29 Thread matteomasina
Thanks !!! That's what I need, was a problem of stretching !!! Great Regards Matteo Masina -- View this message in context: http://qooxdoo.678.n2.nabble.com/ComboBox-in-a-toolbar-tp7416347p7417045.html Sent from the qooxdoo mailing list archive at Nabble.com.

[qooxdoo-devel] ComboBox in a toolbar

2012-03-28 Thread matteomasina
Hi there is a way to modify the height of a combobox in a toolbar ? I have a tool bar with some button with icon, I'va added a textfield and a combobox that I used to search some contents, the height of text field is ok but the height of combobox is too high. I tryied to setHeight but it's works

Re: [qooxdoo-devel] table filtered and column renderer

2012-03-28 Thread matteomasina
Hi and thank you for your answer, but the problem seem to be another : var renderer = new qx.ui.table.cellrenderer.Date(); renderer.setDateFormat(new qx.util.format.DateFormat("dd-MM-")); tableOperazioni.getTableColumnModel().setDataCellRenderer(1, renderer); this is my code : with this li

[qooxdoo-devel] table filtered and column renderer

2012-03-28 Thread matteomasina
Hi I have a Filetered Table. Everything work fine, but I have set up : var renderer = new qx.ui.table.cellrenderer.Date(); tableOperazioni.getTableColumnModel().setDataCellRenderer(1, renderer); and the column it's a correct Date field. I try to format that data in this way : renderer .setDat

[qooxdoo-devel] qx.ui.table.model.Filtered - events

2012-03-14 Thread matteomasina
Hi I'm using a qx.ui.table.model.Filtered, I would like to know, because I haven't find in API guide, an event that focused on applyfilter. My table has about 2000 row, and when apply filters sometimes the operation takes a lot of time, this is not a problem, but I would like to communicate to th

Re: [qooxdoo-devel] search in : qx.ui.table.model.Filtered (SOLVED)

2012-03-13 Thread matteomasina
yes, thank you ! Is watch I was searching for. I've used addNotRegex because I need the negative results. Thanks a lot ! Matteo -- View this message in context: http://qooxdoo.678.n2.nabble.com/search-in-qx-ui-table-model-Filtered-tp7368101p7369045.html Sent from the qooxdoo mailing list ar

[qooxdoo-devel] search in : qx.ui.table.model.Filtered

2012-03-13 Thread matteomasina
Hi, I have another question about the filtered table. I have a text field where the user write what to search inside the table. I need to do something like this : IndexOf(textfield.getValue())<>-1 but the problem is how to create a condition like this ? I need to search if exists something

Re: [qooxdoo-devel] Filtering table with a string column (SOLVED)

2012-03-13 Thread matteomasina
Thanks I'm really sorry, I have solved with the new qx.ui.table.model.Filtered(); and adding a filter... was simple Sorry and thanks -- View this message in context: http://qooxdoo.678.n2.nabble.com/Filtering-table-with-a-string-column-tp7367805p7367865.html Sent from the qooxdoo mailin

[qooxdoo-devel] Filtering table with a string column

2012-03-13 Thread matteomasina
Hi, I have one table, with the first column that is a String field. I need to filter the values for examples : filter --> column="John" to hide all the rows where the name in column 1 is John. the table is a Simple table model. Best regards, Matteo Masina -- View this message in context: ht

[qooxdoo-devel] 2 questions - Table

2012-03-01 Thread matteomasina
Good morning, i have just a small standalone application, -in this application I have a table (new qx.ui.table.model.Simple()), everything work fine, but I have 2 questions : - 1) I put a listener on "click" this event works good, but I don't understand how to verify if the user has clicked the

[qooxdoo-devel] [solved] Re: send parameters to a standalone application

2012-02-02 Thread matteomasina
ok I've solved using : var s = window.location.search; var gP = window.location.parameters = {}; if (s) { var parts = s.substr(1).split("&");

[qooxdoo-devel] send parameters to a standalone application

2012-02-02 Thread matteomasina
Hi, I have created a Standalone application. my index file is this : http://www.w3.org/1999/xhtml"; xml:lang="en"> miaapplicazione I would like to send parameters to miaapplicazione.js For example to give different Welcome page or something like that. How can I change my index.ht

[qooxdoo-devel] [SOLVED] how to send parameter to a windows

2012-01-30 Thread matteomasina
Hi thank you to all of you for your help. I solved with the solution of passing the value in the constructor in the decalration field, like you last answer. Thank you a lot for everything. Best regard. Matteo Masina -- View this message in context: http://qooxdoo.678.n2.nabble.com/how-to-send

Re: [qooxdoo-devel] how to send parameter to a windows

2012-01-30 Thread matteomasina
Thank you you're right ! But there is a way to initialize the property to use the value when the window open ? I need to use Mia_proprieta to initialize some fields into the window. If I use initMia_proprieta it's ok ? or which is the right way to initialize a property ? thank's again -- View

Re: [qooxdoo-devel] how to send parameter to a windows

2012-01-30 Thread matteomasina
Thank you a lot, that's is good, but when I print my property with getMia_prorieta() I get 0 like the init value and not the value I've set with setMia_proprieta(22) the value in this case sould be 22. I can't understand sorry -- View this message in context: http://qooxdoo.678.n2.nabble.com/ho

Re: [qooxdoo-devel] how to send parameter to a windows

2012-01-30 Thread matteomasina
ok I try to explain better with one example : test.js qx.Class.define("esempio.test", { extend : qx.ui.window.Window, properties : { mia_proprieta: { init : 0, check: "Integer" } }, construct : function() { this.base(arguments, "Nuova p

Re: [qooxdoo-devel] how to send parameter to a windows

2012-01-30 Thread matteomasina
Ok so : I have one class that extends the window class, from the main application I would like to set 2 properties : "db" and "object_need" these are two strings. When the window charge, I want to call a query to charge some data into the fields of window. Everything works fine, the only prob

[qooxdoo-devel] how to send parameter to a windows

2012-01-28 Thread matteomasina
Hi, I've made a small test application, this is a qooxdoo standalone app. I've one file Application.js that is the main file, in this file I've put just one button to open a new window. Everything works fine, my problem is to understand the way to pass some parameters to the windows that I'm g