mercredi 2 avril 2014

UN-render a partial?


Vote count:

0




A user can assign a referral to an event from two separate lists, an old collection and new collection. Both collections are assigned to the same attribute. Because of this, whichever collection_select is rendered last is the only one that the form recognizes. Because of this, I've decided to render the second list only if the user needs it like so:



<div id="old_collection">
<%= collection_select(stuff) %>
</div>

<div id="new_collection"></div>

<input id="render_new_collection" href="#" type="checkbox">New-Collection?

<script>
$j(function(){
$j("#render_new_collection").click(function(){
$j("#old_collection").toggle();
$j("#new_collection").html("<%= escape_javascript(render(:partial => 'new_collection')) %>");
});
});
</script>


This works fine, but the way it's set up up is a dead end: the user can't change their mind and use the old collection unless they refresh the page. Is there a way to un-render the partial, leaving only the original form on the page?



asked 59 secs ago






Aucun commentaire:

Enregistrer un commentaire