[jQuery] Re: treeview custom icon

2009-02-07 Thread Anders Viklund
This works fine for replacing the file image, but how can I replace the collapsable and expandable folder images? I would like to distinguish one folder from all other folders. Date: Thu, 5 Feb 2009 19:20:01 +0530 Subject: [jQuery] Re: treeview custom icon From: tareq.m...@gmail.com To: jquery-e

[jQuery] dragHandle boundary

2009-02-02 Thread Anders Viklund
Hi, How can I add a boundary to the dragHandle to prevent the window from being dragged out of the browser? jQuery('#window').Resizable( { minWidth: 245, minHeight:220, maxWidth: 700, maxHeight: 400, dragHandle: '#windowTop', handlers: {

[jQuery] SlideToggleUp, this.options.curAnim is undefined

2009-01-27 Thread Anders Viklund
Hi, I am running into the error "this.options.curAnim is undefined" for the method SlideToggleUp. this.options.curAnim[ this.prop ] = true; jquery-1.3b1.js (line 3827). The problem occurs when I am trying to close a window using this code: $('#windowMin').bind( 'cl

[jQuery] Re: jQuery show(), hide() problems

2009-01-26 Thread Anders Viklund
I found the problem, the first time showWindow was called I could see this error in firebug "jQuery.dequeue is not a function". I added this code and now it works fine ( function( $ ) { $.dequeue = function( a , b ){ return $(a).dequeue(b); }; })( jQuery )