Re: [qooxdoo-devel] Close Windows

2008-08-05 Thread asaris
Check http://qooxdoo.org/documentation/0.7/widget_visibility#appear_disappear asaris Pirlo wrote: > Hi friends. > I would like to know when a windows is closed. But I don´t find the event > for this... Anyone can help me? &

Re: [qooxdoo-devel] Table bug hunting day

2008-07-30 Thread asaris
No problems for me. However I would like to know how you handle column sorting when some field values are null. I experience problems with it in qooxdoo 0.7.x. janis Fabian Jakobs wrote: > Hi qooxdoo users, > > I declare today as official qooxdoo 0.8 table bug hunting day. > > I have just finis

Re: [qooxdoo-devel] Send async rpc via POST?

2008-07-23 Thread asaris
Philipp, qx.io.remote.Rpc does send request in raw POST. You can access POST content by file_get_contents('php://input'); But why don't you use PHP RPC backend located at qooxdoo/backend/php/services/? asaris Philipp Wabinski wrote: > Hello, > > is it possible to se

Re: [qooxdoo-devel] qooxdoo 0.8-alpha2 released

2008-07-11 Thread asaris
There's another feature I'd like to see in qooxdoo. It might be useful to consider option to allow users to add comments in API. Like php manual. It would improve community knowledge share, etc. asaris Fabian Jakobs wrote: In alpha2 we focussed on the widget infrastructure

Re: [qooxdoo-devel] qooxdoo 0.8-alpha2 released

2008-07-11 Thread asaris
Goods news. :) I waited for it since June. I looked at demos and liked it. However I was not impressed with tabview button scrolling. I would add drop down list of tab buttons in right corner for quick access. Like firefox. asaris Andreas Ecker wrote: > Hi, > > please see the ann

Re: [qooxdoo-devel] runtime customized color "table-row-background-focused-selected"

2008-07-02 Thread asaris
lected" : [221, 238, 255] } }); qx.theme.manager.Color.getInstance().setColorTheme(CustomTheme); } updateTheme(); ------ asaris asaris wrote: > Hi, > > Can I customize theme color table-row-background-focused-selected at > runt

[qooxdoo-devel] runtime customized color "table-row-background-focused-selected"

2008-07-02 Thread asaris
style. asaris - Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW! Studies have shown that voting for your favorite open source project, along with a healthy diet, reduces your potential for chronic lamenes

Re: [qooxdoo-devel] Newbie doubts

2008-06-30 Thread asaris
provides different functionality. It is also easier to understand for human beings as we all use well-known folder/file structures everyday. You might want to extend TreeFolder & TreeFile in cases, when you want to add some user interface functionality. asaris petr kobalicek wro

[qooxdoo-devel] SplitPane areas

2008-06-25 Thread asaris
SplitPane constructor would need to have: -- this._firstArea.setOverflow("auto"); this._secondArea.setOverflow("auto"); -- Sometimes SplitPane area content like buttons in tabview bar or toolbar flow over split

[qooxdoo-devel] qx.event.type.DragEvent.setFeedbackWidget()

2008-06-24 Thread asaris
se when I need to modify feedbackwidget based on mouse location relative to destination widget. asaris - Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open S

Re: [qooxdoo-devel] mouse coordinates relative to widget

2008-06-24 Thread asaris
Thank you. Never looked in qx.bom namespace. asaris Hugh Gibson wrote: Does qooxdoo supports mouse coordinates relative to target widget? I cannot find such feature. Asaris, you can find the coordinates of the target widget using: var oElement = oTargetWidget.getElement

[qooxdoo-devel] mouse coordinates relative to widget

2008-06-23 Thread asaris
into new SplitPane with old SplitPane.area content + dropped tabview.Button & tabview.Page content. I need coordinates so I know how to split area. asaris - Check out the new SourceForge.net Marketplace. It's the be

Re: [qooxdoo-devel] speed of method applyFilters in qx.ui.table.model.Filtered

2008-06-23 Thread asaris
Sounds like you didn't notice attachment in my response email. My response email had attachment Filtered.js I added this file to bug. asaris Hugh Gibson wrote: >> I hadn't much time to look at it, but I made spike solution for >> class Filtered. >> >>

Re: [qooxdoo-devel] speed of method applyFilters in qx.ui.table.model.Filtered

2008-06-17 Thread asaris
spatch any events, only one event "dataChanged" is dispatched by setData inside applyFiltersQuickly. That's all I need. Speed is perfect. asaris Hugh Gibson wrote: Asaris, How did you get on? I still think it's worth raising a bug about this as the framework could be muc

Re: [qooxdoo-devel] Anyone needs switching locales and themes at runtime?

2008-06-13 Thread asaris
I agree with you. I do speak 3 languages and have experience building multi language solutions. There's no need for these features at runtime. asaris Fabian Jakobs wrote: > Hi, > > for 0.8 we are considering to remove two feature currently available in > 0.7. We are very i

Re: [qooxdoo-devel] Regression : Sorting Table

2008-06-13 Thread asaris
Thanks. Works for me. asaris Fabian Jakobs wrote: Hugh Gibson schrieb: Hi Fabian, I've just reopened the bug because the sorting problem has not been fixed... You can try this on demobrowser / Table-1 example Confirmed here with the changes of

Re: [qooxdoo-devel] speed of method applyFilters in qx.ui.table.model.Filtered

2008-06-05 Thread asaris
ed to filter only tables in size max 20cols x 500rows. I made custom applyFilters yesterday on row data, has some bugs, but runs rocketfast. asaris Hugh Gibson wrote: I have data sets of 20 columns and 50-150 rows. Model is used by Table. And 1 regex filter, that filters out 50%+ of

[qooxdoo-devel] //.test(null) in qx.ui.table.cellrenderer.Conditional method _getCellStyle

2008-06-04 Thread asaris
el.getValueById(this.conditions[i][6], cellInfo.row); } + if (compareValue == null) + compareValue = ""; + var the_pattern = new RegExp(this.conditions[i][5], 'g'); cond_test = the_pattern.test(compa

[qooxdoo-devel] speed of method applyFilters in qx.ui.table.model.Filtered

2008-06-04 Thread asaris
eRows() slows down process. Is it only me experiencing this problem? asaris - Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://sourc

Re: [qooxdoo-devel] qx.ui.tree: destroying TreeFile in invisible opened TreeFolder

2008-06-04 Thread asaris
Bug submitted. I noticed it fails when container folder is opened and closed. It's not that complex as I described before. asaris Alexander Back wrote: Hi Asaris, thanks for this small example. I've just tried it out and can reproduce the error. It would be great if you could

[qooxdoo-devel] qx.ui.table.model.Filtered method setData

2008-06-04 Thread asaris
ction () { arguments.callee.base.apply(this, arguments); this._applyingFilters = false; this._fullArr = []; }, ----- asaris - Check out the new SourceForge.net Marketplace. It's the best place

[qooxdoo-devel] qx.ui.tree: destroying TreeFile in invisible opened TreeFolder

2008-05-29 Thread asaris
var b = new qx.ui.form.Button("delete"); b.addEventListener("execute", function (evt) { l3.destroy(); }); b.addToDocument(); -- asaris ---

[qooxdoo-devel] API: qx.ui.tree.Tree method getItems

2008-05-29 Thread asaris
fault: false) whether children of subfolder should be included invisible (default: true) whether invisible children should be included ----- asaris - This SF.net email is sponsored by: Microsoft Defy all c

[qooxdoo-devel] qx.ui.table.celleditor.ComboBox selected ListItem

2008-05-23 Thread asaris
dItem) +cellEditor.setSelected(selectedItem); } - + return cellEditor; }, ** asaris - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual S

Re: [qooxdoo-devel] chart widgets

2007-10-24 Thread asaris
I'm not reinventing. I'm implementing. I have already developed svg charting in my framework. Sorry, I haven't seen really good svg charting. With features I'd like to see. asaris Gaetan de Menten wrote: On 10/23/07, Mike Rea <[EMAIL PROTECTED]> wrote:

Re: [qooxdoo-devel] chart widgets

2007-10-24 Thread asaris
Thanks for advices. I'll think about it. It's possible to embed svg in html by defining svg element's namespace. http://www.w3.org/2000/svg";> ... asaris Mike Rea wrote: Awesome project! I've contemplated the same, but have not gotten around t

Re: [qooxdoo-devel] chart widgets

2007-10-24 Thread asaris
on. I'm usually inside source than api.qooxdoo.org. However I haven't look at low level classes that handles building of user interface. But I'd like to gather as much information as possible before I start to work on it. And I hope to find a quick low level introduction to qooxdoo

[qooxdoo-devel] chart widgets

2007-10-23 Thread asaris
t is through analysing the source files? Any tips before I start? asaris - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files u

Re: [qooxdoo-devel] TreeFolder : event "treeOpenWhileEmpty"

2007-10-02 Thread asaris
Thank you very much for fast answer. It's a bit strange behaviour, but I guess I can live with it. asaris Derrell Lipman wrote: On 10/2/07, asaris <[EMAIL PROTECTED]> wrote: qooxdoo 0.7.x 10427M Example

[qooxdoo-devel] TreeFolder : event "treeOpenWhileEmpty"

2007-10-02 Thread asaris
} ======= Why is event "treeOpenWhileEmpty" not dispatched from current TreeFolder? Or am I doing something wrong here? asaris - This SF.

[qooxdoo-devel] setRowDataAsMap

2007-09-04 Thread asaris
y[i]); } asaris - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk

Re: [qooxdoo-devel] Table performance boost

2007-08-17 Thread asaris
Hi all, Great job. I use Ubuntu with FF2. I used virtualization - guest OS "Windows XP"  - to test qooxdoo applications (huge tables) because FF2 runs faster in Windows XP. From yesterday I don't need anymore to launch guest OS to test qooxdoo. asaris Fabian Jakobs wrote: H

Re: [qooxdoo-devel] qx.ui.form.TextField.createRegExpValidator(RegExp vRegExp)

2007-08-14 Thread asaris
Bug reported http://bugzilla.qooxdoo.org/show_bug.cgi?id=588 asaris Fabian Jakobs wrote: > Hi Asaris, > >> RegExp literal format is not allowed by make (treegenerator). Is there >> any chance to allow to use literal format of RegExp? >&

[qooxdoo-devel] qx.ui.form.TextField.createRegExpValidator(RegExp vRegExp)

2007-08-13 Thread asaris
fer to use literal format qx.ui.form.TextField.createRegExpValidator(/abc/i) instead of qx.ui.form.TextField.createRegExpValidator(new RegExp("abc", "i")) asaris - This SF.net email is sponsored by: Splunk I

Re: [qooxdoo-devel] performance IE6 + IE7

2007-08-08 Thread asaris
MS solution for this case is to run virtualization: http://blogs.msdn.com/ie/archive/2006/11/30/ie6-and-ie7-running-on-a-single-machine.aspx They should release soon a new VPC image as old one expires in a few days. asaris Matthias Hellriegel wrote: try this one: http

Re: [qooxdoo-devel] RPC-JSON : determination of SSL connection

2007-08-02 Thread asaris
be replaced by isset($_SERVER["HTTPS"]) && strtolower($_SERVER["HTTPS"] != "off") asaris Derrell Lipman wrote: On 8/1/07, asaris <[EMAIL PROTECTED]> wrote: Hi all, JSON-RPC PHP failed to determine SSL connection on our server. I made som

[qooxdoo-devel] RPC-JSON : determination of SSL connection

2007-08-01 Thread asaris
!= 80) || ( $isSSL && $_SERVER["SERVER_PORT"] != 443)) { // Non-default port number, so append it. $requestUriDomain .= ":" . $_SERVER["SERVER_PORT"]; } ===><8 asaris

[qooxdoo-devel] table in window

2007-07-18 Thread asaris
table width. How can I do it? qx.ui.table.Table inside qx.ui.layout.BoxLayout inside qx.ui.window.Window. asaris - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and

Re: [qooxdoo-devel] Serious problem with online API viewer

2007-06-15 Thread asaris
& "Content-Encoding:gzip" is what we need. You can log information about compression (what is compressed, what is not, compression rate) by apache. asaris Dietrich Streifert wrote: Thank you for the snippet. How did you verify that compression is active and working? asaris schri

Re: [qooxdoo-devel] Serious problem with online API viewer

2007-06-15 Thread asaris
/svg+xml text/css text/_javascript_ That's all. asaris Dietrich Streifert wrote: asaris schrieb: We use mod_deflate at work to compress on the fly. http://httpd.apache.org/docs/2.2/mod/mod_deflate.html asaris It would be nice If you can share

Re: [qooxdoo-devel] Serious problem with online API viewer

2007-06-15 Thread asaris
We use mod_deflate at work to compress on the fly. http://httpd.apache.org/docs/2.2/mod/mod_deflate.html asaris Dietrich Streifert wrote: Hi Fabian, I've used compression by pre-compressing the generated application _javascript_ file via gzip and adding the following line

[qooxdoo-devel] chart & dynamic modules

2007-06-15 Thread asaris
qooxdoo: - dynamic loading of modules (classes) at runtime; - charting (SVG) Is there any plans to implement them? asaris - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and