Displaying 20 results from an estimated 10000 matches similar to: "Simple Toggle Question"
2009 Aug 11
5
Hiding views before using toggle
Hi, I want to hide some of my html in my view before toggling. In my
css I tried setting the display:none; but then when I would run my
toggle function it wouldn''t toggle. Is there an easy solution out there
besides having to render javascript everytime to hide this html before
toggling it?
--
Posted via http://www.ruby-forum.com/.
2007 Jun 26
3
what is the :or parameter in a submit_tag ?
I read the following tag in teh Beast example
<%= submit_tag''Login'', :or => link_to_function(''forgotten password'',
"$(''reset-password'').toggle();") %>
I understand the link_to_function, but what is this :or parameter used
for ?
the link doesn''t appear, so it cannot be used...
thanks for your lights
kad
--
2006 Aug 08
1
link_to_function
Hello
I wonder why this happens:
this:
<%= link_to_function image_tag("chart_bar.png"), :onclick=>"new
Effect.toggle(''bar-project#{project.id}'')" %>
outputs this:
a href="#" onclick="onclicknew Effect.toggle(''bar-project188''); return
false;"><img alt="Chart_bar"
2008 Mar 16
1
form_for error
Hi all,
I have the following code in my application layout:
<div id="utility">
<% if logged_in? %>
<%= link_to "Sign Out", logout_path %>
<% else %>
<%= link_to_function "Sign in",
"$(''signin'').toggle();$(''signin_link'').toggle()",
:id => "signin_link" %>
2006 Jun 06
2
Toggle css for display on page load?
In my layout I have a navigation bar with a few elements in it. The
elements can be toggled on or off and thereby reveal or conceal some
subtopics. I store the state of the toggle for the navigation elements
in the session.
When the page is reloaded, the navigation items are collapsed because
the css for display: none is set by default in the html for the
navigation elements. Is there a
2006 Mar 28
2
JS Toggle graphics on action / click
I''ve got a simple toggle option (On/Off) in my admin GUI list action. I
would like to click on this graphic and change the status of the option.
I got the whole thing working in the controller & db through this
beautiful one-liner
@item = Item.find(params[:id]).toggle!(''display_status'')
The thing I can''t achieve - even after several hours of labouring
2006 Apr 05
7
Conditional toggle button
I have a link_to_remote that updates the content of a hidden div and
makes it appear.. But I want it to hide the div and not execute the
link_to_remote function on the second click. What''s the best way to do
this? I''m thinking I can do it in RJS maybe, but I''m not sure if
there''s a nice Rails-y way to tell if a div is hidden or not..
I''d also
2005 Jun 24
1
Blind Toggle "effect"
I wrote a simple toggle function similar to Element.toggle that will
toggle a section between being up and down using the Blind effect.
I''m relatively new to the code, so I''m not sure if it''s implemented
100% correctly or if it can be done better. I am using it though and
it seems to be working fine.
Anyway, here''s the code and if you think it''s
2006 Jun 26
1
RJS visual_effect toggle?
Is there a way to toggle an effect in an RJS? If not, anyone have
recommendations for how to manually make it toggle? I guess I would
assume some boolean that the rjs checks everytime it''s called and
depending on whether it''s true or false it will do page.visual_effect
:appear or page.visual_effect :hide
-Ben Lisbakken
--
Posted via http://www.ruby-forum.com/.
2008 Aug 24
11
link_to_function check javascript attribute
How could I check the value of an javascript object''s attribute?
<div id="new_item_details" style="display:none"></div>
<%= link_to_function("Show details...", nil, :id => "show_details") do
|page|
page.visual_effect(:toggle_blind, :new_item_details)
if (page[:new_item_details].style.visibility ==
2006 Apr 07
5
RJS support "toggle" effect?
Does RJS inherently support the Element.toggle effect? I haven''t been
able to call it the way you call "appear", "fade", etc...
Jeff
--
Posted via http://www.ruby-forum.com/.
2005 Aug 30
0
content slide in out / simple toggle of content
Hi All,
I have been trying to get a toggle tab system working with protoype
effects. The best example of what I want is shauninman.com (the nav/search)
I intend to have a sidebar and an expandable horizontal tab both of
which can be toogled in and out of place.
for example the sidebar (which will contain a tree menu (like windows
explorer))
Mark Up
---
<div
2006 Apr 07
4
Effect.toggle error in 1.6.1
I have this line of code:
new Effect.toggle(document.getElementsByClassName(''modarea'',
Event.findElement(ev,''li'')), ''blind'');
I''ve confirmed that the Effect.toggle is indeed getting the proper element,
however, I''m getting this in my javascript console:
element.visible is not a function (effects.js: line 153)
I
2008 Mar 25
4
Prototype: toggle() not supported on TD in IE?
The following line causes trouble both with IE 6&7:
cels[i].toggle();
It tells me that this element does not support the property or method.
The element is a cell (TD) which I checked by outputting the tagName
and it works with FF, Opera and Safari.
The IE script debugger stops at this line but I didn''t find a single
posting on the net with a similar problem which is kind of strange.
2006 Dec 26
1
One content at a time - Effect.toggle
Hi everyone,
I am creating a web page which has many links to hidden <div> content, which
on clicking reveals the <div> through "Effect.toggle Blind".
When i click one link the corresponding <div> blinds down, but when i click
some other link the first <div> still persists and won''t blind up.
Can anyone please tell me how should i get to work such that
2009 Jul 24
5
padawan seeks advice from jedi masters to create toggle box via ajax/rjs before slitting wrists with ruby powered light-saber.
I AM TRYING TO MAKE A DAMN TOGGLE BOX, BUT USING MY OWN GRAPHIC AND HAVING
THE MOUSECLICK TRIGGER BOTH SWITCHING THE GRAPHIC (via AJAX) AND SAVING THE
STATE IN THE DATABASE.
I GOT IT ALL WORKING WITH NORMAL HTML GET CALLS TO THE SERVER, BUT I NEED IT
TO BE AJAXIFIED SO THAT THE PAGE DOESN''T RELOAD.
AND TO COMPLICATE MATTERS, IT HAS TO WORK IN A TABLE WITH AN ARBITRARY
NUMBER OF ENTRIES,
2006 Jul 26
3
Reorder lists only after clicking link
Yo,
I have created the usual list that uses drag and drop to reorder stuff
and it all works fine. But I don''t want the list to be draggable until
someone clicks a button (or link) to enable the reordering.
My only idea so far is to have the drag handles hidden with javascript
and the show them onclick, but this is messy. Is there not a clean way
to do this?
Is there a way to
2009 Dec 06
3
link_to_function or button_to_function memory usage
I have an full ajax app doing crud operations for contact info for one
section. I was using ajax calls to edit and cancel and also to add a
contact. I am implementing a button_to_function instead of doing an
ajax call to just edit/add/or cancel a contact. I am running into a
memory issue using the button_to_function or link_to_function.
I have this:
<%= link_to_function ''Edit
2004 May 12
3
Cisco 7960 SIP - DND soft key toggle?
Running the latest * CVS and Cisco 7960G and 7940G phones with SIP 6.3 image.
I have figured out how to turn on the DND feature through the
Settings>Call Preferences>Do Not Disturb - Yes then Save. This puts the
phone into DND On and shows a DND image above the far right soft key which
you use to turn off DND.
There should be a better way. An on/off toggle of the soft key that it
2006 Mar 18
2
Additional link tag attributes with link_to_function...
Hi,
I''m having a bit of a struggle with link_to_remote. Everything works
exactly as I want it, but the problem is that I want to add another
attribute to the <a>-tag, namely class="". Long story short, I want
specific links to look differently from others, but all of them being
link_to_function. Normally, I''d do this with adding a class="foo" to