Re: [qooxdoo-devel] Table "column selector" problem ... is this a bug?

2015-10-09 Thread kirra5
Thank you very much, but unfortunately, this is not what I am looking for. It is not enough that it looks like an popup, I also need it to behave like one (hides when clicking outside, ). -- View this message in context: http://qooxdoo.678.n2.nabble.com/Table-column-selector-problem-is-thi

Re: [qooxdoo-devel] Table "column selector" problem ... is this a bug?

2015-10-08 Thread kirra5
Thank you for the reply, but the example is not working and I don't know how to make it work (there is no dom element). So, is the issue with the popup a bug? Should I make a bug report? Thanks! -- View this message in context: http://qooxdoo.678.n2.nabble.com/Table-column-selector-problem-is

Re: [qooxdoo-devel] List filter is very slow

2015-10-08 Thread kirra5
I used the virtual list and it works perfect. Thank you again! -- View this message in context: http://qooxdoo.678.n2.nabble.com/List-filter-is-very-slow-tp7587643p7587662.html Sent from the qooxdoo mailing list archive at Nabble.com. --

[qooxdoo-devel] Table "column selector" problem ... is this a bug?

2015-10-08 Thread kirra5
Hi I have a small problem. Below is an example. If we place the table on a popup and then open the "column selector" and try to check/uncheck a column in this selector, the popup hides, the table disappears and the "column selector" jumps to left top corner of the screen. It is impossible to use

Re: [qooxdoo-devel] List filter is very slow

2015-09-30 Thread kirra5
Ok, thank you very much! -- View this message in context: http://qooxdoo.678.n2.nabble.com/List-filter-is-very-slow-tp7587643p7587645.html Sent from the qooxdoo mailing list archive at Nabble.com. -- __

[qooxdoo-devel] List filter is very slow

2015-09-30 Thread kirra5
Hi I have a small problem with filter speed (I made an example to show the issue to you). If the list gets a little bit bigger (1500 items) it becomes very slow when filtering. I have the feeling that I am doing something terrible wrong. I put the example below (just type one number into the text

[qooxdoo-devel] Creating x number of different decorators dynamically

2015-05-05 Thread kirra5
Hi I am trying to set different styles (border, gradient background color,...) for X different columns in table header cells. I tried a few things, but nothing worked like I expected. 1) I created a new decorator "qx.ui.decoration.Decorator". *PROS*: I can set as many decorators as I would like

Re: [qooxdoo-devel] "changeSelection" event behaviour for a different selectionMode

2015-03-19 Thread kirra5
Hi Thank you! I opened a bug report. Regards -- View this message in context: http://qooxdoo.678.n2.nabble.com/changeSelection-event-behaviour-for-a-different-selectionMode-tp7586966p7586968.html Sent from the qooxdoo mailing list archive at Nabble.com. --

[qooxdoo-devel] "changeSelection" event behaviour for a different selectionMode

2015-03-19 Thread kirra5
Hi, I found another situation where I am not sure if it is meant to be like this or if it is a bug. Situation: We set "selectionMode" of the table selectionModel to 3 or 4, like shown in the example below. Then we listen the "changeSelection" event. The event will be fired in this cases: 1) When

Re: [qooxdoo-devel] List "multi select" - problem unselecting items

2015-03-19 Thread kirra5
Hi, Ok, thank you, I already opened a bug report. -- View this message in context: http://qooxdoo.678.n2.nabble.com/List-multi-select-problem-unselecting-items-tp7586960p7586965.html Sent from the qooxdoo mailing list archive at Nabble.com. ---

[qooxdoo-devel] List "multi select" - problem unselecting items

2015-03-18 Thread kirra5
Hi I am not sure if this is a bug or if it is meant to be like this, so I wanted to ask you first. Situation: We use "qx.ui.list.List" and I set selectionMode to "multi". Now we select all items in list. I expected that if I now click one item, all other items will be unselected (like in table),

[qooxdoo-devel] Table header problem - maybe a bug?

2015-02-10 Thread kirra5
Hi I wanted to ask if this is already a known issue: I am using your existing playground example to demonstrate the problem (I only made a new small changes, the link is below). I set the columns of the table to editable. Then I hide a couple of columns. It is important to have a table with enoug

Re: [qooxdoo-devel] Image update problem in table header cell

2015-02-02 Thread kirra5
Hi I call it like this: this.setButtonSearchVisibility(true); but "this._showChildControl("buttonSort")" and "this._excludeChildControl("buttonSort")" have no effect. I even tried this, but it was not working either: this.getChildControl("buttonSearch").setVisibility("visible"); and this.getC

[qooxdoo-devel] Image update problem in table header cell

2015-01-30 Thread kirra5
Hi I am trying to add a new image to the header, under the sort image that is already implemented. But once the header is rendered and the icon is visible, how can I make it disappear or make it visible again? The header won't update even if I exclude the icon. What am I doing wrong? My HeaderCe

[qooxdoo-devel] Rendered cell value from table

2015-01-29 Thread kirra5
Hi What is the easiest way to get the "rendered" value of a table cell? Thank you very much for your help! -- View this message in context: http://qooxdoo.678.n2.nabble.com/Rendered-cell-value-from-table-tp7586741.html Sent from the qooxdoo mailing list archive at Nabble.com. -

[qooxdoo-devel] Get all listeners of a Widget

2015-01-07 Thread kirra5
Hi Is there a way to get a list of all listeners, that are added to a widget? If I use this: var eventManager = qx.event.Registration.getManager(myWidget); var listeners = eventManager.getListeners(myWidget, "appear"); then I get only the listeners for a specific event type. But I need all list

Re: [qooxdoo-devel] Scroll a table row into view - by its value

2014-10-15 Thread kirra5
Hi, Thank you very much! Then we will do it this way. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Scroll-a-table-row-into-view-by-its-value-tp7586280p7586283.html Sent from the qooxdoo mailing list archive at Nabble.com. -

[qooxdoo-devel] Scroll a table row into view - by its value

2014-10-15 Thread kirra5
Hi The situation is like this: let's say we have a table with 1 rows and 5 columns (name, surname, ...). We are using the remote table model. Now we want to scroll into view the first row, where the "name" starts with "S". We don't know the index of the row, we only know the "value" and the "c

Re: [qooxdoo-devel] generate API - ignore file

2014-08-04 Thread kirra5
Hi Thank you very much for your help! -- View this message in context: http://qooxdoo.678.n2.nabble.com/generate-API-ignore-file-tp7585983p7586024.html Sent from the qooxdoo mailing list archive at Nabble.com. -- Infra

Re: [qooxdoo-devel] generate API - ignore file

2014-07-29 Thread kirra5
Hi One of the libraries is the jquery library. The errors look like this: " : Syntax error ',' (pos (x, y)). " I hope this helps. Thank you very much! -- View this message in context: http://qooxdoo.678.n2.nabble.com/generate-API-ignore-file-tp7585983p7586005.html Sent from the qooxdoo maili

[qooxdoo-devel] generate API - ignore file

2014-07-22 Thread kirra5
Hi I have an external (not qooxdoo) .js file inside my qooxdoo project. Now, I can't generate the api. Is there a way to ignore that "external" file? Thank you very much for your help! -- View this message in context: http://qooxdoo.678.n2.nabble.com/generate-API-ignore-file-tp7585983.html S

Re: [qooxdoo-devel] Form - change a required field

2014-05-04 Thread kirra5
Ok, thank you very much! -- View this message in context: http://qooxdoo.678.n2.nabble.com/Form-change-a-required-field-tp7585572p7585616.html Sent from the qooxdoo mailing list archive at Nabble.com. -- Is your lega

Re: [qooxdoo-devel] Form - change a required field

2014-04-18 Thread kirra5
Yes, exactly this star is what I am trying to remove. Does anyone know how to do it? -- View this message in context: http://qooxdoo.678.n2.nabble.com/Form-change-a-required-field-tp7585572p7585574.html Sent from the qooxdoo mailing list archive at Nabble.com. -

[qooxdoo-devel] Form - change a required field

2014-04-18 Thread kirra5
Hi How can I change one field from "required" to "not required" (and back), after the form has been created? With other properties, it works fine (for example "enabled"). But with "required" it seams like it is not working. Am I doing something wrong? Here is a very simple example. After you press

Re: [qooxdoo-devel] Locale - combination of multiple locales

2014-02-24 Thread kirra5
Thank you for your help! But unfortunately, this is not a solution. The "changeLocale" events will be fired and will need to update all the components properly. I can't change the setLocale, when I enter the form, because multiple forms will be visible at the same time (and also other components)

[qooxdoo-devel] Locale - combination of multiple locales

2014-02-12 Thread kirra5
Hi Is it possible to combine/use different locale information on two parts of the same application? *For example:* the whole application should have the locale "en", but a specific part (this can be, for example, a form) of the application should be using the locale "de". I was thinking about

Re: [qooxdoo-devel] Spinner - problem with the comma

2014-02-11 Thread kirra5
Ok, thank you! -- View this message in context: http://qooxdoo.678.n2.nabble.com/Spinner-problem-with-the-comma-tp7585264p7585308.html Sent from the qooxdoo mailing list archive at Nabble.com. -- Android apps run on Bl

[qooxdoo-devel] Spinner - problem with the comma

2014-02-03 Thread kirra5
The spinner behaves strange if the comma is visible and if we try to delete or add some numbers. Here is a small example. If you type in (for example) "12345" and then click outside, you get this: "12,345" (this is ok). But now, if I delete for example "5", then I get "12" instead of "1,234". The s

Re: [qooxdoo-devel] Complex validation of one field (OR, XOR, AND, ...)

2014-01-27 Thread kirra5
Thank you very much for your reply! I will try it this way. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Complex-validation-of-one-field-OR-XOR-AND-tp7585234p7585240.html Sent from the qooxdoo mailing list archive at Nabble.com.

[qooxdoo-devel] Complex validation of one field (OR, XOR, AND, ...)

2014-01-24 Thread kirra5
Hi I want to make a more complex validation of individual fields. *Example:* Lets say that we have a simple TextField. We add one validation function (A) to this field right after we create the field. And later, we want to add another validation function (B) to this same field. *Result:* If th