search for: slideup

Displaying 20 results from an estimated 28 matches for "slideup".

2005 Dec 03
1
SlideDown/SlideUp question
Hi , i jotted down this script here http://awstagingserver.net/snehal/ajax/prototype/rssget/news.asp# its a RSS reader thing , what i am trying to achieve here is save browser space here by using SlideDown and SlideUp , as you might see whats happening with the script when you click on the newsbar name , what i want is when initially WorldNews is displayed and when you click on Slashdot ,it should slide up the open news bar (this case WorldNews) and slide down Slashdot. but since we cant guess which news bar is...
2005 Sep 13
6
flicker in IE with SlideDown/SlideUp
The flicker I am seeing in IE is really really bad with SlideDown/SlideUp. The element I am sliding is a div that contains a table. The tables are stacked on top of each other so that the presentation actually appears as a single table. When I SlideDown, the toggled element flashed into view then disappears before sliding down. On SlideUp it slides up then flashes...
2005 Oct 10
3
Scrollable DIV causes flicker in FF - SlideDown & SlideUp
I have a fixed height scrollable div inside another div that controls the slideDown and slideUp effects. This causes a really bad flicker in Firefox (1.0.7) for the entire duration of the slide down and up. While on the other hand it works smoothly in IE (except that on a slideUp it causes a last second flash that shows the entire div). Any ideas on how I can fix this? Thanks. ______...
2006 Feb 06
10
Urgently Need Solution
I''m using scriptaculous'' SlideUp and SlideDown effects to animate a menu. Specifically, I SlideUp, make some CSS changes, and SlideDown. All works well, except that for a split second in between, the element''s display becomes ''none'' and the other menu item jump into the space. I haven''t been abl...
2005 Sep 18
3
Attaching effects during onload
...r filters = document.getElementsByName(''filter''); for (var i = 0; i < filters.length; i++) { var filter = filters[i]; var trigger = filter.getElementsByTagName(''a'')[0]; //trigger.onclick = function() { new Effect.SlideUp (filter); } trigger.onclick = function() { filter = this.parentNode.parentNode.parentNode; Effect.SlideUp(filter); } } } The trouble is, when the onclick handler fires, ''filter'' always refers to the last...
2005 Nov 30
0
SlideUp/SlideDown errors in FF 1.5?
I''m getting the following errors in Firefox 1.5 when I use the SlideUp/SlideDown effects: Error: Error in parsing value for property ''bottom''. Declaration dropped. Source File: http://localhost:3000/conferences/new Line: 0 I get about 8 of them all in a row for each call; however, the effects still work as they should. Is this a known problem...
2005 Oct 03
0
SlideDown and SlideUp Flickers in IE
I am trying to use SlideUp and SlideDown in a couple of my sites and it works great in Firefox and Opera but has a terrible flash in IE. You can see this here: http://intlpantry.com/recipes.html Is the problem in my css or my html? Something else? Thanks Chad Henderson -------------- next part -------------- An HTML attac...
2006 Jan 20
5
Height problem after interrupting SlideDown/SlideUp effects
Hi, i have a problem with the the SlideDown and SlideUp effects. Since a similiar problem is also visible on the script.aculo.us homepage, i''m going to explain it this way. - Go to http://script.aculo.us/ - On the main site below "visual effects", click "Advanced options", the sub panel will scroll down. - Hit the close...
2006 Mar 27
7
rjs template ? (how to check for existence of a dom element?
In my rjs template I''m using the following line. page.visual_effect :slideUp, ''comment_error_details'', :duration => 0.5 It works fine if I have created the div with the id="comment_error_details", but if I haven''t created the error yet then my whole rjs template fails. How can I check to see if an element has been created? I cou...
2006 Apr 09
4
Set Speed of Combinational Effects
How can I slow/speed up the combo effects? Thanks
2006 Sep 19
0
Effect.Highlight interferes with Effect.toggle
I''m using something like an accordion, but the div containers have some elements in them that use Effect.Highlight (i.e. InPlaceEditor and Ajax.Checkbox, one of my SAU classes). If I click the element that starts the Effect.SlideUp or some other similar effect, and then mouse over an element starting an Effect.Highlight, the highlight cancels the SlideUp. Or, if the Effect.Highlight is in the middle of its fade out then clicking the button to trigger the SlideUp/Down has no effect. Any idea how to fix this problem so that...
2006 Jul 10
17
Effect.SlideDown/Up() and HTML issues
...aving problems with script.aculo.us</td> </tr> this is where I''m facing difficulties. I want another table row to appear "onclick", like this: <tr id="info-container"> <td colspan="2">full story here <a onclick="new Effect.SlideUp( document.getElementById(''info-container''))">hide me</a></td> </tr> </table> but I don''t want it to be visible at all except for when the user actually clicks "problems". I''ve tried various solutions, but to no avail....
2005 Dec 22
2
using slidedown and slide up in a multiple level menu
can someone take a look at a menu I am trying to build using slideUp and slideDown. I finally got it working in IE and now in Firefox, it works fine on the first level, but not on the submenus. They just slide over the top of the divs that follow them. Where am I going wong? http://mod.dreamchasers.com/menutest.php Thanks! Chad ____________________________...
2006 Feb 22
2
''this.initialize'' is null or not an object
...if (Element.visible(panels[i])) { elup = panels[i]; } } } } if (elup) { // the next command is where the javascript errors (but it still works) Effect.Parallel ( [ new Effect.SlideUp(elup, {duration: .2}), new Effect.SlideDown(thisBody, {duration: .2}) ] ); } else { Effect.SlideDown(thisBody, {duration: .2}); } } } </script> <div class="stretchBar" id="myStretchBar"> <d...
2006 Feb 24
8
possible Slide and Blind IE bug
Hi, I''m new to this list, new to script.aculo.us but pretty comfortable with javascript. I''m trying to get a combination of Effect.SlideUp and Down and Effect.BlindUp and Down to well... it''s hard to describe, maybe have a visit here (try in firefox first): http://bruno.biosci.arizona.edu/occa/test.html Click on "next month" a couple times, then click on "previous month" until you are back to February....
2006 Jan 23
4
Transition between effects
Peepz, I was looking into how script.aculo.us handles effect to write a tutorial and for a current project I wanted to make transition between PAIR effects possible. These PAIR effects are (Appear/Fade, SlideUp/SlideDown, BlindUp/BlindDown) the effect that toggle can handle. script.aculo.us calls queue.loop each 40 milliseconds, and that calls all the effect.loop for all effects in the queue. Then Effect calls render and calls setup when its idle and calls update (with position) when its running. *upd...
2005 Dec 08
3
Uncomplete hiding on Firefox 1.5
Hi all, I have observed the following on Firefox 1.5 (both on XP and OSX): My page has some div containers that hold sortable ul. The div's also contain links for showing/hiding the contained ul's. No matter which effect I use to do the hiding and showing (Fade/Appear, SlideUp/Down, BlindUp/Down) the hidden ul's don't hide completely, leaving a blank 'trace' behind. When showing them again, the ul appears below this blank space, pushing the bottom border of the container down. Hiding them again makes the blank space grow, making the container grow at the...
2006 Sep 06
0
Long delay between execution of front & end in same queue
...veryone, I gotta problem that effects 2 of my products. I was wandering if I could get your take on it. Basically, I have 2 parallel effects. First Effect makes things disappear new Effect.Parallel( [ new Effect.Fade(oTab.panel, {duration: 1}), new Effect.Fade(contentId, {duration:1}), new Effect.SlideUp(this.panelContainer, {duration:1}) ], {queue:{position: end, scope: ''tabEffects''}}); Second Effect makes things appear new Effect.Parallel( [ new Effect.Appear(oTab.panel, {duration: 1, queue:{position: front, scope: ''tabEffects''}}), new Effect.Appear(contentId...
2006 Apr 06
0
script.aculo.us V1.6.1
...through of scroll options from Sortable to Draggable [thx Gregory Hill] * Make it possible to scroll window on dragging, #3921 [thx rdmiller] </li> * added visualEffect method for the Element Mixin, fixed so you can chain multiple calls. [Rick Olson] Bug fixes: * Fix an IE flicker with SlideUp/SlideDown, fixes #3774, [thx sbbowers] * Fix a problem with window scrolling on draggables [thx Gregory Hill] * Fix a problem with id-based handle names and draggables * Fix shift-tab for autocompleter in Safari, fixes #4423 [thx matt] * Make Element.forceRerendering give up on any exception (this...
2005 Aug 30
0
content slide in out / simple toggle of content
...top: 0; left: -225px; width: 250px; height: 100%; margin: 0; padding: 0; } #treeWrapper * { margin: 0; padding: 0; } #tree { width: 100%; height: 100%; padding: 0; margin: 0; background: red; } JS --- Element.toggle has been tried, as has effects.MoveBy effect.slideup has also been tried but I had troubles with nesting divs, any pointers would be appreciated all the best > Sam -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails-spinoffs/attachments/20050830/38e9aa5b/attachment.html