[qooxdoo-devel] QXDT, where to get it?

2012-05-09 Thread deniska
http://download.innoopract.com/qxdt/updates/site.xml obviously no longer exists. I didn't find any other place I can download it from. Any ideas? Thanks. -- View this message in context: http://qooxdoo.678.n2.nabble.com/QXDT-where-to-get-it-tp7534344.html Sent from the qooxdoo mailing list archi

[qooxdoo-devel] Editable cells in treevirtual

2012-05-26 Thread deniska
Hey, all. I'm using treevirtual and I need to make one of the columns editable using a selextbox. Would appreciate any example or pointers to where to look for it. Thanks in advance. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Editable-cells-in-treevirtual-tp7577884.html S

Re: [qooxdoo-devel] Editable cells in treevirtual

2012-05-29 Thread deniska
I've checked the example out. In that particilar example they add data as array, which doesn't seem to work for a tree. I'm using SimpleTreeDataModel to fill the tree, and unfortunately it doesn't allow me adding multiple options for cell value. Also I have parent and children entries, so I somehow

[qooxdoo-devel] Auto sizing dock layout controls

2012-05-29 Thread deniska
I have a composite I need to add 2 composites to. One composite has fixed height and I want it at the south edge. Second one should fill the rest of the layout. I've tried using south and north edges, but I still have an empty space in the middle of the layout. Also tried to find example in Demo Br

Re: [qooxdoo-devel] Auto sizing dock layout controls

2012-05-29 Thread deniska
That solves my problem. Many thanks. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Auto-sizing-dock-layout-controls-tp7579382p7579422.html Sent from the qooxdoo mailing list archive at Nabble.com. --

Re: [qooxdoo-devel] Script stucks when adding decorator to widget

2012-06-06 Thread deniska
Ouch! Thanks, I'll use layouts instead. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Script-stucks-when-adding-decorator-to-widget-tp7580288p7580291.html Sent from the qooxdoo mailing list archive at Nabble.com. ---

[qooxdoo-devel] Qooxdoo server deployment.

2012-07-05 Thread deniska
Hi, all. So far I was writing greasemonkey scripts, using qooxdoo. Which means the scripts were injected into existing web page, without me having to actually deploy my code at server side. Now I'm wondering how deployment on the web server works. Let's say I have a standard hosting with cPanel a

Re: [qooxdoo-devel] Qooxdoo server deployment.

2012-07-05 Thread deniska
Great! That's what I thought. After working with GM scripts I just fell in love with qooxdoo, so going to use it for my websites development :) -- View this message in context: http://qooxdoo.678.n2.nabble.com/Qooxdoo-server-deployment-tp7580543p7580546.html Sent from the qooxdoo mailing list ar

[qooxdoo-devel] Need advice on GUI model

2012-07-08 Thread deniska
Hi, all. I need advice on how to implement the GUI for the data structure I have. Basically I have 2 tables, one contains data, second one is kind of "scheduling" table, which means I need to "schedule" the data from first table by dropping it in a cell on a second table. Now as far as I could fi

[qooxdoo-devel] Get property value by property name

2012-07-10 Thread deniska
Hi, all. Is there any way to get property value dynamically? If I have an instance of an object and property name, can I get the value of the property of that instance? -- View this message in context: http://qooxdoo.678.n2.nabble.com/Get-property-value-by-property-name-tp7580601.html Sent from

Re: [qooxdoo-devel] Get property value by property name

2012-07-10 Thread deniska
Doh, how did I miss that? :) Thanks. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Get-property-value-by-property-name-tp7580601p7580603.html Sent from the qooxdoo mailing list archive at Nabble.com. ---

Re: [qooxdoo-devel] Need advice on GUI model

2012-07-23 Thread deniska
So I guess this is not possible? -- View this message in context: http://qooxdoo.678.n2.nabble.com/Need-advice-on-GUI-model-tp7580571p7580714.html Sent from the qooxdoo mailing list archive at Nabble.com. -- Live Secur

Re: [qooxdoo-devel] Need advice on GUI model

2012-07-24 Thread deniska
Thanks. Can I at least see qooxdoo classes code somehow? Would need to check how table implemented to inherit and add functionality I need. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Need-advice-on-GUI-model-tp7580571p7580737.html Sent from the qooxdoo mailing list archi

Re: [qooxdoo-devel] Need advice on GUI model

2012-07-24 Thread deniska
Actually it looks like it's possible to kinda select a table cell, with showCellFocusIndicator property of table. The question now if there's a way to know what cell I'll be drag & dropping to in a second table. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Need-advice-on-GU

[qooxdoo-devel] Getting list of class members

2012-07-29 Thread deniska
Hi, all. I couldn't find any functionality in qx.Class that would allow me to get all class members. There's a function to get all properties, what about members? Thanks. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Getting-list-of-class-members-tp7580823.html Sent from t

Re: [qooxdoo-devel] Add users to mysql

2012-10-09 Thread deniska
Get http request object > getHTTPRequestObject: function() > { > try { return new XMLHttpRequest(); } > catch(e) {} > try { return new > ActiveXObject("Msxml

Re: [qooxdoo-devel] Label font color is not set properly

2012-12-18 Thread deniska
Just figured out the same, thanks :) -- View this message in context: http://qooxdoo.678.n2.nabble.com/Label-font-color-is-not-set-properly-tp7582315p7582319.html Sent from the qooxdoo mailing list archive at Nabble.com. -

[qooxdoo-devel] Rich labels and ellipsis

2013-01-10 Thread deniska
Hey, all. I need a label with fixed width that contains a hyperlink, and I need it to have ellipsis in case the text is too long to fit. For some reason ellipsis is displayed when rich property is set to false, once I set it to true to have HTML inside, it doesn't display ellipsis anymore, and jus

[qooxdoo-devel] Rendering first column of virtual tree as HTML isn't working

2013-09-14 Thread deniska
Hi, all. I'm trying to create a virtual tree the following way: http://tinyurl.com/psoo9aw For some reason, when I render first column as HTML, I get Object[object] in first column, instead of an actual value. You can see it if you uncomment the following line: //tcm.setDataCellRenderer(0,new q

Re: [qooxdoo-devel] Rendering first column of virtual tree as HTML isn't working

2013-09-14 Thread deniska
Nevermind, I found where I was wrong. If anybody still wondering, it looks like first column is already rendered as something that accepts HTML and there's no need to set rendering for it. Working example: http://tinyurl.com/pux7sux -- View this message in context: http://qooxdoo.678.n2.nabbl

[qooxdoo-devel] Multiple selection combo box

2013-09-25 Thread deniska
Hi, all. I need a multiple selection combo box widget. Pretty much like a simple selectbox but with ability to select multiple items. Be it checkboxes next to each item, or any other implementation, doesn't matter much to me, just need the ability of a dropbox and list of multiple selection. Than

Re: [qooxdoo-devel] Multiple selection combo box

2013-09-26 Thread deniska
Thanks. Was thinking the same, but was just wondering if there's an existing public library based on QX that has that kind of widget already. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Multiple-selection-combo-box-tp7584659p7584672.html Sent from the qooxdoo mailing list

[qooxdoo-devel] Adding column to existing table

2013-09-28 Thread deniska
Hi, all. I'm looking for a way to add a column to already existing qx.ui.table.Table. So far I found nothing in API, or on forums, so is it even possible? -- View this message in context: http://qooxdoo.678.n2.nabble.com/Adding-column-to-existing-table-tp7584683.html Sent from the qooxdoo ma

Re: [qooxdoo-devel] Adding column to existing table

2013-09-28 Thread deniska
Thanks. In that case I'm thinking perhaps creating a new table, copying all the properties except for tableModel and setting tableModel manually with 1 more column. Would that work, or do I need to copy additional stuff, except for properties? -- View this message in context: http://qooxdoo.6

[qooxdoo-devel] serializeListeners missing cellClick event

2013-09-29 Thread deniska
Hi, all. For some reason when I'm trying to call qx.event.Registration.serializeListeners for a table, it's missing cellClick listener, even though it has been assigned. Please see the following example: http://tinyurl.com/ow5qu3w Thanks in advance, Denis. -- View this message in context: h

[qooxdoo-devel] Generate.py ignoring tab-width setting

2015-10-18 Thread deniska
Hi, all. I'm trying to generate with different tab-width. According to documentation, I've added the following settings to "jobs" section of config.json "fix-files" : { "tab-width" : 4 }, After running "generate.py -fix" from my application folder, I would expec

Re: [qooxdoo-devel] Generate.py ignoring tab-width setting

2015-10-19 Thread deniska
Hmm, that still doesn't seem to make any change to Application.js Attaching the config files, perhaps I'm still doing something wrong. After added the section you've suggest to config.json I'm running generate.py fix config.json -

[qooxdoo-devel] Multiple errors when refreshing qooxdoo application in Firefox

2015-10-19 Thread deniska
Hi, all. On Firefox, when I'm trying to refresh the application, I'm getting crazy amount of errors, pretty much for every class in qx. If I close Firefox and reopen the application, it works perfectly. Attaching the image as well. Screenshot What am I missing

Re: [qooxdoo-devel] Generate.py ignoring tab-width setting

2015-10-19 Thread deniska
Try generate.py pretty Does this make a difference? Still not. I'm debugging right now and it seems that pretty-print settings are getting lost in generator.py main() somewhere along the following lines: ctx = context.copy() print(config._data['jobs']['pretty-print']._data)

Re: [qooxdoo-devel] Generate.py ignoring tab-width setting

2015-10-20 Thread deniska
Whoops, never mind my previous post, there's no problem with python tools. Apparently "pretty" is the name of the job, so the correct format is: "pretty": { "pretty-print" : { "general" : { "indent-string" : "\t" } } }

Re: [qooxdoo-devel] Multiple errors when refreshing qooxdoo application in Firefox

2015-10-20 Thread deniska
Setting isLoadParallel to false definitely helped, with one side effect, namely: 012755 qx.core.Init: Load runtime: 12755ms But I guess it's someting I could live with. Thanks again, Dietrich! -- View this message in context: http://qooxdoo.678.n2.nabble.com/Multiple-errors-when-refreshing-

[qooxdoo-devel] Not fixed? - Bug 9219 - Dynamic Script Execution Order broken by Firefox Debugger

2016-03-06 Thread deniska
Hi, all. I'm experiencing the symptoms described under the following issue: http://bugzilla.qooxdoo.org/show_bug.cgi?id=9219. I'm currently on latest FF build (44.0.2) and using Firebug. When script console is active in Firebug and I'm loading the application via localhost with parallel loading,

[qooxdoo-devel] Sending AJAX request with array in request

2016-05-04 Thread deniska
Hi, all. According to documentation , requestData can handle ArrayBuffer parameter. However when I try this: var buf = new ArrayBuffer(16); var ar = new Uint8Array(buf); for(var i = 0; i < ar.length; i++)

Re: [qooxdoo-devel] Sending AJAX request with array in request

2016-05-04 Thread deniska
Thanks, Reed. I've already asked the question and got the answer: http://stackoverflow.com/questions/37035641/sending-qx-io-request-xhr-request-with-array-in-request -- View this message in context: http://qooxdoo.678.n2.nabble.com/Sending-AJAX-request-with-array-in-request-tp7588323p7588325.

[qooxdoo-devel] Qooxdoo generate doesn't support ... operator?

2016-05-05 Thread deniska
Hi, all. I'm trying to generate my app and I'm getting this error message: Unknown operator u'..' (pos (10, 12)) On the following line: arr = [...arr]; Now I can get around this by wrapping this line with eval(), which gives me just a warning, but I would definitely love a more permanent solut

Re: [qooxdoo-devel] Qooxdoo generate doesn't support ... operator?

2016-05-17 Thread deniska
Hello. Sorry for getting MIA for a while, didn't have time to check in. As I already said, I have a workaround for that using eval(), so it's not really a showstopper for me. I'll check out the new build procedure when I have time, thanks! -- View this message in context: http://qooxdoo.678.n