Hi,

The height of the resizer itself isn't changed (equals always to auto), but
the height of the contained element is updated.

Here is a piece of the source code of Resizer:

    _changeHeight: function(value)
    {
      var child = this.getChildren()[0];
      child && child.setHeight(value);
    },

You need to do this:

resizer.getChildren()[0].addEventListener('changeHeight',
function(){.....});


johnl-4 wrote:
> 
> Unfortunately, the 'height' property doesn't actually change, as it is 
> always 'auto,' so there is no event fired, at least in 0.7.1. I've 
> modified my interface so that I don't need this event anymore, but it 
> would be a nice one to have. Maybe I'll put an enhancement request into 
> bugzilla.
> 
> David.
> 
> dperez wrote:
>> >From David to David,
>>
>> You can add an event listener to the changeHeight event of the child of
>> the
>> resizer.
>> Hope this helps.
>>
>>
>> johnl-4 wrote:
>>   
>>> I'm looking for a way to detect when the height of a resizer has been 
>>> changed by a user. The 'changeHeight' even doesn't do it. Is this 
>>> supported?
>>>
>>> David
>>>
>>>     
>>
>>   
> 
> -------------------------------------------------------------------------
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> _______________________________________________
> qooxdoo-devel mailing list
> qooxdoo-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
> 
> 

-- 
View this message in context: 
http://www.nabble.com/resizer-height-tf4152679.html#a11858602
Sent from the qooxdoo-devel mailing list archive at Nabble.com.


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to