> * context menus don't seem to work anymore
They do. Don't know what was wrong. I made a minimal example with
conversion to namespace objects and it worked. Sorry for this point!
Florian
-
Take Surveys. Earn Cash. Influence
Hi guys,
I've lately stumbled across a few things I had running with 0.5.3 which
do not anymore in namespace branch (after changing class names
accordingly of course ;-). Amongst them:
* context menus don't seem to work anymore
* QxGalleryLists look like crap (also with stylesheets in the demo th
Hi, Jim!
> So what you are saying is that you feel it is perfectly OK that people
> (read
> the list posts for the past 2 weeks) have to spend days or weeks trying to
> do something simple like change the font or height of a QxListView header?
What I said was that it is not uncommon for develope
I'm glad to know that there are more features that are going to be added, I'll be happy to put them through their paces. But, I really hope that I don't have to look to the renderer to make visual changes, I'm hoping to simply set properties of the table to make my changes. If the table then has to
"Jim Hunter" <[EMAIL PROTECTED]> writes:
> I am having a hard time subscribing to the thought process that is being
> used to create new controls for qooxdoo. As a 'consumer' of the toolkit, I
> should not need to know how each control is put together to use it. The
> header of the table is a grea
The table is still in early development. The API has not settled and I'm
shure there are a lot of convenience methods missing. Everyone who uses
the table should keep this mind.
You're right: The user should not be bothered with internal details. The
header is one of these details. I think this
So what you are saying is that you feel it is perfectly OK that people (read the list posts for the past 2 weeks) have to spend days or weeks trying to do something simple like change the font or height of a QxListView header? And that in order to do so, you need to be an expert in the internal wor
Hi, Jim,
sorry to hear about your current frustration. :-( Hope you get over it
soon.
While I think it is perfectly ok and quite common to reach low points in
using any sufficiently complex software project, I do not think your
assumptions and expectations are appropriate.
Jim Hunter wrote:
I am having a hard time subscribing to the thought process that is being used to create new controls for qooxdoo. As a 'consumer' of the toolkit, I should not need to know how each control is put together to use it. The header of the table is a great example. As a consumer/user of the table, if I w
"Jim Hunter" <[EMAIL PROTECTED]> writes:
> attaching it to the email has altered the file enough that the Apply Patch
> does not work with this file. Is it possible to have you ZIP it up and send
> it that way?
Zip isn't convenient, but here it is as an attachment instead of inline. This
should
attaching it to the email has altered the file enough that the Apply Patch does not work with this file. Is it possible to have you ZIP it up and send it that way?Thanks,Jim
On 7/27/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]
> wrote:"Jim Hunter" <[EMAIL PROTECTED]
> writes:> OK, that explanation does
"Jim Hunter" <[EMAIL PROTECTED]> writes:
> OK, that explanation does help clear things up a bit. Later I will dig
> deeper into the code to see how I can exploit it. Thanks for the
> explanation.
>
> Jim
>
> On 7/26/06, Til Schneider <[EMAIL PROTECTED]> wrote:
>>
>> > So what you are saying is tha
OK, that explanation does help clear things up a bit. Later I will dig deeper into the code to see how I can exploit it. Thanks for the explanation.JimOn 7/26/06,
Til Schneider <[EMAIL PROTECTED]> wrote:
> So what you are saying is that there is no way to set the entire row> color, I have to set e
> So what you are saying is that there is no way to set the entire row
> color, I have to set each cells color one at a time? I would think that
> there needs to be a built in way to easily set the entire rows font and
> color and style and not have to do it on a cell by cell basis.
It's up to
Hi Andreas
> Hi, Christian,
>
> good to hear that you seriously consider migrating to future qooxdoo
> versions, i.e. namespaces-based qooxdoo. ;-)
Of course, I would like to stay with the cutting edge of qooxdoo
development. But once one seriously invests in a certain version, learning
the inte
So what you are saying is that there is no way to set the entire row color, I have to set each cells color one at a time? I would think that there needs to be a built in way to easily set the entire rows font and color and style and not have to do it on a cell by cell basis.
JimOn 7/24/06, Til Schn
Hi, Jim,
would you like to file a bug report for this issue? Of course, you may
put yourself in as the current assignee who is working on a fix ... ;-)
Anyway, good luck,
Andreas
>>paneScroller.getHeader().setHeight(maxHeaderHeight);
>>
>>paneScroller is a TablePaneScroller. So I thought it w
>> You can write your own cell renderer, which sets the colors you
>> want. If you subclass an existing one, then you won't need much
>> code.
>
> This will work if I want to change the color when the grid is created,
> what if I want to change the color of the row because some value
> elsewhere
> paneScroller.getHeader().setHeight(maxHeaderHeight);
>
> paneScroller is a TablePaneScroller. So I thought it would be quicker
> for me to simply create a function that I could pass in a value and have
> it set the header height.
You could use the method "_getPaneScrollerArr" of the Table-cla
[EMAIL PROTECTED] schrieb:
> There's a lot of work to do throughout the code, for just this kind of
> thing.
> Both your issue and Christian's getClientDocument() problem raise the issue
> yet again. From a user perspective, one shouldn't need to go delving deep
> into
> the guts of internal cla
"Jim Hunter" <[EMAIL PROTECTED]> writes:
> I created a new table method called getCurrentRow that calls your code so
> now I can just do table.getCurrentRow() and it returns the correct value.
There's a lot of work to do throughout the code, for just this kind of thing.
Both your issue and Christ
This will work if I want to change the color when the grid is created, what if I want to change the color of the row because some value elsewhere changed? I don't see anywhere a place to get a handle to a row in order to change any of it's properties.
Thanks,JimOn 7/21/06, Til Schneider <[EMAIL PR
This worked great. I wonder why I couldn't find it in the docs?I created a new table method called getCurrentRow that calls your code so now I can just do table.getCurrentRow() and it returns the correct value. You might think of adding a property like this to the table. I personally don't feel tha
> What is the Namespaces way to get the row # of the currently selected
> row in a Table? The ListView way was
> this.getPane().getManager().getSelectedItems(); but this does not work
> in Namespaces.
table.getSelectionModel().getLeadSelectionIndex()
> I don't want to change the 'theme' of the grid. I need to change the
> font color of individual rows at run time. I do not know in advance what
> the colors of each row are going to be. That info is based on data in
> the row. I need to know how to pragmatically change the row font color.
You
I dug a little deeper to see what fun I could have and to try and make this a bit simpler, less 'automatic' and I see this line used in the Table code:paneScroller.getHeader().setHeight(maxHeaderHeight);paneScroller is a TablePaneScroller. So I thought it would be quicker for me to simply create a
Thanks for pointing me in the right direction. I was able to modify the function to look for '' and if it found one (only caring about 2 row headers right now) then it would increase the height of the header. It works perfect!
Do you have any suggestions for my other post about getting the row numb
Jim Hunter schrieb:
> After reading through the docs for the new Table in the Namespaces
> branch, I can not find a way to increase the height of the column
> headers. I need two and sometimes three rows of text, to be decided at
> runtime. Anyone know how to get this done?
The table header hei
What is the Namespaces way to get the row # of the currently selected row in a Table? The ListView way was this.getPane().getManager().getSelectedItems(); but this does not work in Namespaces. I found nothing in the documentation on this and nothing in the demos to respond to clicks. A little help
I don't want to change the 'theme' of the grid. I need to change the font color of individual rows at run time. I do not know in advance what the colors of each row are going to be. That info is based on data in the row. I need to know how to pragmatically change the row font color.
thanks for tryi
Hi, Jim
you can change the table look in appearance theme. See in
source/themes/appearance/default/theme.js. Search for 'TABLE' section.
Regards
Jim Hunter пишет:
> Could not find anywhere in the docs for the Namespaces new Table,
> anything that references changing the font color for a single
Could not find anywhere in the docs for the Namespaces new Table, anything that references changing the font color for a single row. And for that matter, getting rid of the alternating row background color so that my setBackgroundColor function works like it did on a ListView. The 5 Table demos all
NoRa <[EMAIL PROTECTED]> writes:
> Hi,
>
> I am new in qooxdoo.
> I would like to see examples from SVN Namespaces source/demo/test/
> I allready have a copy of this, but if I try to show any of examples,
> JavaScript error is here: qx is not defined.
> How can I make it functional?
There's a "Ma
Hi,In this document you can find the answer:http://qooxdoo.org/documentation/user/checkout_from_svnIn the namespaces branch, you must use "tools/generate-dev/make.sh" instead of "tools/make.sh".
-- Salut,Ricardo Borillo DomenechAnalista/Programador - Servei d'Inf
Hi,
I am new in qooxdoo.
I would like to see examples from SVN Namespaces source/demo/test/
I allready have a copy of this, but if I try to show any of examples,
JavaScript error is here: qx is not defined.
How can I make it functional?
Radek
--
View this message in context:
http://www.nabble
@Jim:
I had this error yesterday but when I tried one hour later the error
didn't occur anymore. I checked out without problems.
Maybe just try again.
Jim Hunter schrieb:
I have tried to both update and checkout from the
Namespaces branch of SVN and in both cases, from two different
computer
When you mentioned the StackTrace it lit up a light bulb. I am using the debug logger that was created for .5.x that uses the code below (modified for Namespaces):qx.core.Object.prototype.debug = function(m, c)
{ var clz = this.classname; var hc = this._hashCode; debugCollect.push(c+":"+cl
"Jim Hunter" <[EMAIL PROTECTED]> writes:
> When you mentioned the StackTrace it lit up a light bulb. I am using the
> debug logger that was created for .5.x that uses the code below (modified
> for Namespaces):
>
> qx.core.Object.prototype.debug = function(m, c)
> {
>var clz = this.classname;
After reading through the docs for the new Table in the Namespaces branch, I can not find a way to increase the height of the column headers. I need two and sometimes three rows of text, to be decided at runtime. Anyone know how to get this done?
Thanks,Jim
-
"Jim Hunter" <[EMAIL PROTECTED]> writes:
> 1. (*) text/plain ( ) text/html
>
> Is anyone having problems running the Namespaces branch in IE 6.0.29? I am
> testing my app, which runs well in FireFox, but in IE I get nothing in the
> browser and the log window only shows:
>
> 0
I have tried to both update and checkout from the Namespaces branch of SVN and in both cases, from two different computers, I am getting the following SVN error:Error REPORT request failed on '/svnroot/qooxdoo/!svn/vcc/default'
Error REPORT of '/svnroot/qooxdoo/!svn/vcc/default': Could not read r
Is anyone having problems running the Namespaces branch in IE 6.0.29? I am testing my app, which runs well in FireFox, but in IE I get nothing in the browser and the log window only shows:
002031 INFO: qx.component.InitUiComponent(55): initialize runtime: 15ms002047 ERROR: qx.component.InitUiCompo
Mhh, crazy stuff. As "_applyInitialAppearance" is a typical property of
QxWidget and is only called in the constructor of QxWidget this
basically means that the QxWidget prototype doesn't have any property
"_applyInitialAppearance" at the time of instance creation. Another way
to produce the er
Hi Jim,
we are having similar problems and appearently they only exist with IE.
Firefox (1.5) handles the same code flawlessly.
We couldn't yet figure out what causes these errors, but we are guessing
that it has something to do with property-modifiers.
cheers,
Lothar
Am Donnerstag, den 06.
"Jim Hunter" <[EMAIL PROTECTED]> writes:
> Is it me, or does every exception in the namespaces branch return the same
> message? Regardless of the reason the program doesn't execute, I get the
> following in the debug window:
>
> Modification of property "state" failed with exception: TypeError -
Is it me, or does every exception in the namespaces branch return the same message? Regardless of the reason the program doesn't execute, I get the following in the debug window:
Modification of property "state" failed with exception: TypeError - this._applyInitialAppearance is not a functionand th
Any idea when the namespaces branch will make it to full version status? Looking at the new Table, I really like it and I really need it. Is there anything in the rest of the controls (current controls that were moved to namespaces) that we should worry about? Are things working correctly, or at le
I was able to get one from Derrell directly, thanks.JimOn 6/14/06, Sebastian Werner <[EMAIL PROTECTED]
> wrote:zipped, does not seem to work. Sourceforge filter these mails. So I will
try again.Here the built version as rar-file. Hope you can handle this.SebastianJim Hunter schrieb:> Would someone
Would someone be so kind as to e-mail me a built version of the current namespaces branch? I am currently not able to do a build on it and I want to start making the proper changes to my code and to test the new ListView and I don't want to use the individual files.
Thanks,Jim
_
In examples/Window_1.html:
- "First Window" has a maximize button but can't be maximized (nothing
happens when you click it)
- If "Second Window" is maximized, it looses its window decoration including
the title bar and "restore" and "minimize" buttons, so there's no way to
get ba
50 matches
Mail list logo