Jump to content

Passing Variable to Modal


DrTrans
Go to solution Solved by DrTrans,

Recommended Posts

So i have 2 files I'm working with I need to get ReportID to the Modal.php ajax handler

 

 

modal.php

<! Request Application !>
<div class="modal small hide fade" id="ReportModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  <div class="modal-header">
    <button type="button" class="pull-right btn " data-dismiss="modal" aria-hidden="true">×</button>
    <h3 id="myModalLabel">Get Report</h3>
  </div>  
  
  
  <div class="modal-body">
 <script type="text/javascript">
  
    $.ajax({
        cache: false,
        type: 'POST',
        url: 'ajax/getReport.php',
        data: 'id='+reportID,
        success: function(invdata) 
        {
            $('#report').show().html(invdata);
        }
    });
  </script> 
  
     <div id="report"></div>
  </div>
</div>
Edited by DrTrans
Link to comment
Share on other sites

Heres the second part .. don't know why its doing it. 

 

custom.js

 
$("#GetReport").click( function (data) { 
 
 ReportID = $('#reportID').val(); 
 
 data.preventDefault(); 
 $('#ReportModal').modal({content: data}); 
  
});
 
Edited by DrTrans
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.