Kenneth Tilton wrote:
> The client wants a slider in a table cell. I am having no problems 
> rendering it using hand-coded HTML and the HTML cellrenderer, and I do 
> get an initial mouseevent when I click on the field but no more, and I 
> need the mousemove and mouseup to complete the picture.
> 
> I get a ghostbuster symbol so I guess qooxdoo thinks I am trying to 
> drag. I set draggable to false on the table but I am still getting the 
> ghostbuster.
> 
> Is there any way to tell qooxdoo to pass mouse events through to the 
> renderer. 

In the :onload handler of the "thumb" image dom element:

    qx.event.Registration.addListener(e.target
        ,'click'
        ,function (e) {alert('bingo ~a');}
        ,this
        ,{true|false});

hth,kt

------------------------------------------------------------------------------
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to