Skip to main content
AI Assist is now on Stack Overflow. Start a chat to get instant answers from across the network. Sign up to save and share your chats.
edited tags
Link
Edited title to improve searchability
Link

How to pass values arguments to modal.show() function in twitter bootstratBootstrap

Source Link
Nambi
  • 2.7k
  • 8
  • 30
  • 38

How to pass values arguments to modal.show() function in twitter bootstrat

I have a page the shows a list of local cafes. When the user clicks on a certain cafe, a modal dialog is shown, that already has the "cafe name" pre-filled. The page contains many cafe names, and the form should contain the "cafe name" that he clicked on.

Following is the list of cafe names generated as text with link button

 <table class="table table-condensed table-striped"> <tbody> <tr> <td>B&Js </td> <td>10690 N De Anza Blvd </td> <td> <a class="btn btn-primary" data-toggle="modal" onClick="$('#createFormId').modal('show')" >Announce</a> </td> </tr> <tr> <td>CoHo Cafe </td> <td>459 Lagunita Dr </td> <td> <a class="btn btn-primary" data-toggle="modal" onClick="$('#createFormId').modal('show')" >Announce</a> </td> </tr> <tr> <td>Hot Spot Espresso and Cafe </td> <td>1631 N Capitol Ave </td> <td> <a class="btn btn-primary" data-toggle="modal" onClick="$('#createFormId').modal('show')" >Announce</a> </td> </tr> </tbody> </table> 

Here is the modal form

<div class="modal hide fade" id="createFormId""> <div class="modal-header"> <a href="#" class="close" data-dismiss="modal">&times;</a> <h3>Create Announcement</h3> </div> <div class="modal-body"> <form class="form-horizontal" method="POST" commandName="announceBean" action="/announce" > <input type="hidden" name="cafeId" value="104" /> <fieldset> <div class="control-group"> <label class="control-label" for="cafeName">Where I am Coding</label> <div class="controls"> <input id="cafeName" name="cafeName" class="input-xlarge disabled" type="text" readonly="readonly" type="text" value="B&amp;Js"/> </div> </div> <div class="control-group"> <label class="control-label" for="date">Date</label> <div class="controls"> <input type="text" class="input-xlarge" id="date" name="date" /> <p class="help-block"></p> </div> </div> <div class="control-group"> <div class="controls"> <input type="submit" class="btn btn-primary" value="create" /> <input type="button" class="btn" value="Cancel" onclick="closeDialog ();" /> </div> </div> </fieldset> </form> </div> 

Question is how to pass actual value into the "value" attribute of the modal form?

<input type="hidden" name="cafeId" value="104" /> 

The form "show" event is triggered by "onlick" event

<a class="btn btn-primary" data-toggle="modal" onClick="$('#createFormId').modal('show')" >Announce</a>