Re: [qooxdoo-devel] How to avoid appearance of caret in TextField in Internet Explorer

2008-09-11 Thread Dioc
Hello Jonathan, I cannot reproduce this problem by using legacy 0.7.3. It seems that this problem was fixed some time ago. Thank you! Best regards, Denis -- View this message in context: http://www.nabble.com/How-to-avoid-appearance-of-caret-in-TextField-in-Internet-Explorer-tp19145371p194363

Re: [qooxdoo-devel] How to avoid appearance of caret in TextField in Internet Explorer

2008-09-09 Thread Dioc
Internet Explorer displays focus indicator in the last created TextField. Try the following code in qooxdoo 0.7.3 to see the problem. Is it a bug? var field = new qx.ui.form.TextField(); field.setLeft(20); field.setTop(20); field.setWidth(100); field.addToDocument(); var field2 = new qx.ui.form.

Re: [qooxdoo-devel] Opera, dialog and Tab

2008-09-05 Thread Dioc
Hello, I have tested a slightly modified version of your code and do not see any tab problems in Opera 9.51. To run the code snippet I have replaced qx.core.Init.getInstance().getApplication().frame.add(this.loginDialog); by qx.ui.core.ClientDocument.getInstance().add(this.loginDialog); and va

Re: [qooxdoo-devel] tooltip for tablecell?

2008-09-01 Thread Dioc
Hello, I had the same problem some time ago. I searched in the forum and found some useful suggestions which led me to the decision of my problem. I wrote the class of table with tooltips. See http://www.nabble.com/file/p19250279/ToolTipTable.js the attached file . I hope it will help you. Best

[qooxdoo-devel] How to avoid appearance of caret in TextField in Internet Explorer

2008-08-25 Thread Dioc
Hello, I am using qooxdoo 0.7.3 and found that Internet Explorer displays caret in a TextField after its appearance when the TextField is not focused programmatically or manually. How to avoid this behaviour? Try the following code to see the problem. var field = new qx.ui.form.TextField(); fiel

Re: [qooxdoo-devel] Adding eventHandlers to a listview item

2008-08-15 Thread Dioc
Hello stirling, qx.ui.listview.ListView is deprecated and qx.ui.table.Table should be used instead. Try the following code. I hope it helps you to achieve the desired behaviour. // Create Header var ranksHead = { filename: { label : "Name", width : 400, type : "text", sortable : true, so

[qooxdoo-devel] Locale changing leads to IE problem

2008-08-14 Thread Dioc
Hello, I am using qooxdoo 0.7.3. I found an annoying problem that is related to Internet Explorer and locale changing. I posted the corresponding bug http://bugzilla.qooxdoo.org/show_bug.cgi?id=1181 #1181 in Bugzilla. Is there a workaround to prevent this problem? Any help will be very apprecia

Re: [qooxdoo-devel] Table bug hunting day

2008-07-30 Thread Dioc
Hello, 1) Data in “A number” and “A date” column looks strange in 4 browsers in my environment (Russian locale). For example: - 4cldr_number_group_separator599cldr_number_decimal_separator03 (this is a number) - ??15?_15cldr_pm??_???13cldr_pm?_288??? (this is a date) 2) Attempts to scroll or se

Re: [qooxdoo-devel] How to simulate HTML button click from qooxdoo?

2008-07-21 Thread Dioc
Hello Dalmazio, There is UploadWidget in qooxdoo-contrib. See http://qooxdoo.org/documentation/contrib and http://qooxdoo-contrib.svn.sourceforge.net/viewvc/qooxdoo-contrib/trunk/qooxdoo-contrib/UploadWidget/ for details. Maybe it will help you. Best regards, Denis -- View this message in con

Re: [qooxdoo-devel] Secure and nonsecure warning in IE using https (SSL or TLS)

2008-07-02 Thread Dioc
It seems that this problem is related to http://bugzilla.qooxdoo.org/show_bug.cgi?id=890 bug #890 . -- View this message in context: http://www.nabble.com/Secure-and-nonsecure-warning-in-IE-using-https-%28SSL-or-TLS%29-tp18215785p18232784.html Sent from the qooxdoo-devel mailing list archive at

Re: [qooxdoo-devel] event control in listview

2008-06-16 Thread Dioc
Using of qx.ui.listview.ListView is deprecated. qx.ui.table.Table should be used instead. There is selection manager for ListView that can be accessed by the following way: listView.getPane().getManager() Selection manager has “changeSelection” event that is fired when list of selected items was c

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

2008-06-16 Thread Dioc
We use runtime locale/language and theme switching in our application. We do not seriously depend on this feature but I should note that removing support of runtime switching can be painful for us (and not only for us) if: - there will not be an easy way to determine and set locale/theme at startu

Re: [qooxdoo-devel] Patch that changes selected rows in table when selection state of node of TreeVirtual is changed

2008-05-07 Thread Dioc
Hello Derrell, Derrell Lipman wrote: > > In the future, you'd make life MUCH easier for me, when submitting > changes, > if you'd submit a standard diff. > Thank you for your suggestion. I will submit a standard diff next time. Derrell Lipman wrote: > > Thanks for sending the patch. Plea

[qooxdoo-devel] Patch that changes selected rows in table when selection state of node of TreeVirtual is changed

2008-05-06 Thread Dioc
Hello, Programmatic change of selection state of node in TreeVirtual does not select the appropriate row in the table. The following patch can eliminate the problem. qx.Class.patch(qx.ui.treevirtual.SimpleTreeDataModel, qx.Mixin.define("patch.qx.ui.treevirtual.SimpleT

[qooxdoo-devel] Patch that adds property to TextField that allows not to select all text on tab focus

2008-04-18 Thread Dioc
qx.Class.patch(qx.ui.form.TextField, qx.Mixin.define("patch.qx.ui.form.TextField", { properties : { /** * Whether all text should be selected when field gets focus by "Tab" key press. */ selectTextOnTabFocus : {

Re: [qooxdoo-devel] Overflow inside a qx.ui.window.Window

2008-04-09 Thread Dioc
Hello Charles, I do not remember exactly but I suppose that the reason for this trick is related to a problem with layouts (unfortunately they are imperfect in qooxdoo 0.7). I ran across a similar problem when I began working with qooxdoo and somebody pointed me to the trick (or I found info abou

[qooxdoo-devel] Question about implementation of qx.ui.table.headerrenderer.Icon.updateHeaderCell

2008-04-08 Thread Dioc
Hello, I am using qooxdoo 0.7.3. Implementation of method updateHeaderCell of qx.ui.table.headerrenderer.Icon is the following: updateHeaderCell : function(cellInfo, cellWidget) { this.base(arguments, cellInfo, cellWidget); // Set URL to icon var img = cellWidget.getUs

Re: [qooxdoo-devel] Overflow inside a qx.ui.window.Window

2008-04-08 Thread Dioc
Hello Charles, Try to set minWidth and minHeight properties for the window. For example: this.__logger.set({ width:450, height:200, minWidth: 200, minHeight: 200 }); I hope this will help you. Best regards, Denis Charlie-73 wrote: > > Hi, > I want to make a "logger" window

Re: [qooxdoo-devel] mdi application

2008-01-25 Thread Dioc
Hello Tim, Try the following code. I hope it will help you. var layMain = new qx.ui.layout.HorizontalBoxLayout(); layMain.setLeft(10); layMain.setTop(10); layMain.setRight(10); layMain.setBottom(10); layMain.setSpacing(5); // tree var tree = new qx.ui.treevirtual.TreeVirtual("Tree"); tree.setWi

Re: [qooxdoo-devel] Text Fields and Areas in pop-up windows don't show blinking text cursor

2007-11-16 Thread Dioc
Hello Steven, It seems that it is an old bug of Firefox. Try to make search by word “cursor” in archive or for example see http://www.nabble.com/Missing-the-caret-in-FF-tf4199587.html#a11978589 Best regards, Denis Steven M. Cherry wrote: > > Follow-up: I have found that the blinking cursor

Re: [qooxdoo-devel] Table Header or Column Color

2007-11-07 Thread Dioc
Hello Kirk, See http://demo.qooxdoo.org/current/demobrowser/#example~Table_3.html Maybe it will help you. Best wishes, Denis Kirk Abbott-2 wrote: > > Hello All, > > I am trying to set either the > 1) header color for certain columns > 2) the column column color for certain columns > in the q

Re: [qooxdoo-devel] Error when trying to show qx.ui.window.Window

2007-10-19 Thread Dioc
Hello Kirk, It is necessary to set minWidth and minHeight properties for the window to avoid the error. Change your code in create_buggy_tab function like this: var window1 = new qx.ui.window.Window("Test"); window1.set({ top: 100 , left: 100

Re: [qooxdoo-devel] Re size Image Depends on the System Resolution

2007-10-17 Thread Dioc
Hello Rajkumar, Try the following code. Maybe it will allow you to get what you want. var img = new qx.ui.basic.Image("./hrimages/imaps.gif"); img.set({ left : 0, top : 0, right : 0, bottom :0, resizeToInner : true, zIndex : -1000 }); bodyLayout.add(img); var lbl = new qx

Re: [qooxdoo-devel] Re size Image Depends on the System Resolution

2007-10-17 Thread Dioc
Hello Rajkumar, Using background images in qooxdoo is based on corresponding CSS capabilities. The current level of CSS (i.e. the level 2) does not support stretching of background image. Such option will be available only in CSS level 3 (see http://www.w3.org/TR/css3-background/) that is the wor

Re: [qooxdoo-devel] Re size Image Depends on the System Resolution

2007-10-16 Thread Dioc
Hello Rajkumar, Add the following line to your code: bodyLayout.setStyleProperty("backgroundRepeat", "no-repeat"); Best wishes, Denis deepakraj wrote: > > Dear Members, > i am entirely new to this forum. i have doubt in image resizing > when the System resolution changes...using qx.

Re: [qooxdoo-devel] Smalles possible Qooxdoo

2007-10-10 Thread Dioc
y, you can find some useful information about qooxdoo build options in $(QOOXDOO_PATH)/frontend/framework/tool/make/application.mk and http://qooxdoo.org/documentation/0.7/custom_builds http://qooxdoo.org/documentation/0.7/custom_builds Best wishes, Denis aka Dioc -- View this messa

[qooxdoo-devel] How to restore the previous way of displaying table's cell contents?

2007-09-26 Thread Dioc
ks in advance. Best wishes, Denis aka Dioc -- View this message in context: http://www.nabble.com/How-to-restore-the-previous-way-of-displaying-table%27s-cell-contents--tf4520605.html#a12895755 Sent from the qooxdoo-devel mailing list archive at Nabbl

[qooxdoo-devel] Some propositions about properties

2007-09-21 Thread Dioc
ld be useful to have ability to refine not only init value of property but also other options, for example check option. 3) It would be useful to have read-only properties (i.e. properties that have only init values and automatically generated getters without setters). Best regards, Denis aka Dioc --

Re: [qooxdoo-devel] Problem whith findValueExact

2007-09-20 Thread Dioc
Hello, Yes, in version 0.7.2 value for ListItem can be only a string because appropriate check was added to property declaration in ListItem class. It is not noticed in release notes and may lead to some hard-to-detect problems in existent applications (as it was in our case). In our application

[qooxdoo-devel] Notice: empty strings for "icon" parameters in TreeFolder/TreeFile constructor does not lead to default icons in 0.7.2

2007-09-20 Thread Dioc
If empty strings are passed for "icon" (second and third) parameters in TreeFolder/TreeFile constructor in version 0.7.1, it leads to appearance of default icons. But in version 0.7.2 this behaviour was changed. Namely, if empty string is passed for "icon" parameter, TreeFolder/TreeFile will not h

[qooxdoo-devel] Incorrect link to download zip archive of SDK

2007-09-20 Thread Dioc
See http://qooxdoo.org/download#sdk "zip archive with DOS line breaks" link points to version 0.7.1 but should point to version 0.7.2. Best regards, Denis aka Dioc -- View this message in context: http://www.nabble.com/Incorrect-link-to-download-zip-archive-of-SDK-tf4485781.html

Re: [qooxdoo-devel] Problem whith findValueExact

2007-09-19 Thread Dioc
A colleague of mine came across the problem that is being discussed in this topic. We considered the problem and some questions were arisen. As said in the topic earlier, it would be useful to define ListItem's value of arbitrary type (for example, Date or Number) and have an opportunity to use me

Re: [qooxdoo-devel] Enable another ButtonView button

2007-09-19 Thread Dioc
// some actions var manager = menubar.getBar().getManager(); manager.setSelected(manager.getItems()[0]); } Best regards, Dioc -- View this message in context: http://www.nabble.com/Enable-another-ButtonView-button-tf4472447.html#a12772749 Sent from th

[qooxdoo-devel] How to change/restore TextField's value without liveUpdate and leaving TextField?

2007-09-19 Thread Dioc
ally change. As an impact of two setValue calls, _applyValue is called twice and changeValue event is fired twice. Any suggestions? Best regards, Dioc -- View this message in context: http://www.nabble.com/How-to-change-restore-TextField%27s-value-without-liveUpdate-and-leaving-TextField--tf4479

Re: [qooxdoo-devel] English short date format wrong

2007-09-14 Thread Dioc
Hello, Let’s continue this thread. For some reason, time format for en_US locale is incorrect. See demo: http://demo.qooxdoo.org/current/showcase/#Localization I suppose, time format/value should contain AM/PM like in Windows. Is it a bug? Best wishes, Dioc -- View this message in context

Re: [qooxdoo-devel] How to delete an item from a TreeVirtual

2007-09-14 Thread Dioc
ode() !== qx.ui.treevirtual.TreeVirtual.SelectionMode.NONE) { this.createDispatchDataEvent("changeSelection", this.getSelectedNodes()); } } }, Best regards, Dioc -- View this message in context: http://www.nabble.com/How-to-delete-an-item-from-a-TreeVirtual-tf4440851.html#a12671073 Sent from the qooxdoo-devel

Re: [qooxdoo-devel] Applying same values to properties

2007-09-12 Thread Dioc
t declares: ... Moreover, new values are only stored (and the optional apply method called) if different from the existing values. A tiny but important optimization. Best regards, Dioc -- View this message in context: http://www.nabble.com/Applying-same-values-to-properties-tf4421640.html#a12630205 Sen

Re: [qooxdoo-devel] How to set a ComboBox/Ex to the width of its widest option?

2007-08-20 Thread Dioc
regards, Dioc -- View this message in context: http://www.nabble.com/How-to-set-a-ComboBox-Ex-to-the-width-of-its-widest-option--tf4134118.html#a12232429 Sent from the qooxdoo-devel mailing list archive at Nabble.com. - This

Re: [qooxdoo-devel] Error in build version, that is related to qx.ui.core.Font

2007-07-31 Thread Dioc
Hello, I found the cause of the error. There was the error in our Application.js. Namespace was missing in #resource setting. As a result resource files of our application were not copied in build version. Best regards, Dioc -- View this message in context: http://www.nabble.com/Error-in

[qooxdoo-devel] Error in build version, that is related to qx.ui.core.Font

2007-07-31 Thread Dioc
on this line related to source version: var oFont = new qx.ui.core.Font(10, ["sans-serif", "serif", "monospace"]); There is not such problem in source version. Any help will be very appreciated. Thanks in advance! Best regards, Dioc -- View this message

[qooxdoo-devel] A strange behaviour of ComboBoxEx when it displays the drop-down list

2007-07-11 Thread Dioc
avi", cSpace222 + this.tr("AVI files")], ["web", this.tr("Web search history")], ["chats", this.tr("Chats")], ["other", this.tr("Other")], ["contacts", cSpace + this.tr("Contacts")], [&qu

[qooxdoo-devel] A strange behaviour of TextField with liveUpdate when pressing Backspace in IE 6

2007-07-09 Thread Dioc
in Firefox 2 and Opera 9. The code snippet: var txtSearchText = new qx.ui.form.TextField(this.tr("Search Keyword")); txtSearchText.set({ left : 5, top : 5, liveUpdate : true, width : "80%" }); txtSearchText.addToDocument(); Best regards, Dioc -- View thi

[qooxdoo-devel] A possible bug in IE6 with “key press” event handling in TextField

2007-07-06 Thread Dioc
on(oEvent) { if (oEvent.getKeyIdentifier() == "Enter") { console.log("txtSearchText.keypress"); console.open(); } }, txtSearchText); layRow1.add(txtSearchText); Any suggestions, solutions and workarounds are welcomed. Best regards, Dioc -- View this message in con

Re: [qooxdoo-devel] a solution

2007-06-27 Thread Dioc
Hello, I found a solution. someObject.constructor.staticVar expression can be used to access static variable. In my case it is winService.constructor.IMAGE_NAME. Best regards, Dioc -- View this message in context: http://www.nabble.com/someObject.self%28arguments%29.staticVar-does-not-work

Re: [qooxdoo-devel] someObject.self(arguments).staticVar does not work

2007-06-26 Thread Dioc
Unfortunately winService.self.IMAGE_NAME does not work too. It has "undefined" value. Firebug shows that winService.self references to the function that has the attached "self" function. Latter self function has the attached "classname" variable and its value is "qx.core.Object". Fabian Jakobs-

[qooxdoo-devel] someObject.self(arguments).staticVar does not work

2007-06-26 Thread Dioc
g or is it normal? How can I access static variable IMAGE_NAME by using the instance reference? Is it possible? Sorry for my English. :-) Thank you in advance, Dioc -- View this message in context: http://www.nabble.com/someObject.self%28arguments%29.staticVar-does-not-work-tf3981046.html#a113