As you could read in my last post, I'm just working with ListViews. I was 
bothered by the fact that every columns has a hover state, sortable or not. 
That means, that I could only see whether the column is sortable after a 
mouseclick on the header cell. I've changed that behaviour for myself by 
editing the EventListener of the HeaderCell (file 
"qx/ui/listview/HeaderCell.js", Line 285)

_onmouseover : function(e) {
    if (!this._config.sortable || this.getParent()._resizeSeparator) {
        return;
    }

    this.addState("over");
}

With this code only the sortable columns have a hover state and therefore it's 
also visible whether a column ist sortable or not without clicking on the cell.

How do you think about that? Might it also be an improvement in your projects 
or am I a bit to fussy in this case? If you also enjoy it, this behaviour could 
easily be added to the next release, couldn't it?

Best regards, Christian
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to