I am rather new Asp.net mvc. I am trying to have a dropdownlist selected based on a large list of values. When the dropdown is clicked a modal is brought up with a jquery DataTable in side. I am trying to implement when a row from the DataTable is clicked the modal is closed and the two values(data: "Name" and data: "Company") from the row are passed back to parent window so i can populate the dropdownlist. any help would be well appreciated.
Dropdown:
@Html.DropDownListFor(model => model.Company,
Enumerable.Empty<SelectListItem>(),
new {@id="drop" })
modal:
<div id='myModal' class='modal'>
<div class="modal-dialog">
<div class="modal-content">
<div id='myModalContent'></div>
</div>
</div>
</div>
js to bring up modal:
<script>
var TeamDetailPostBackURL = '/Home/Details';
$(function () {
$("#drop").click(function () {
debugger;
$("#drop").blur();
var $buttonClicked = $(this);
var id = $buttonClicked.attr('data-id');
var options = { "backdrop": "static", keyboard: true };
$.ajax({
type: "GET",
url: TeamDetailPostBackURL,
contentType: "application/json; charset=utf-8",
data: { "Id": id },
datatype: "json",
success: function (data) {
debugger;
$('#myModalContent').html(data);
$('#myModal').modal(options);
$('#myModal').modal('show');
},
error: function () {
alert("Dynamic content load failed.");
}
});
});
});
</script>
partial view(when a row in #t1 in clicked i would like to populate the dropdown "Drop"):
@model MvcApplication1.Models.About
@{
ViewBag.Title = "Abouts";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title" id="myModalLabel">FriendsInfo</h4>
</div>
<div>
<table id="exampless" class="display" width="100%">
<thead>
<tr>
<th>Name</th>
<th>Company</th>
</tr>
</thead>
</table>
</div>
@section Scripts{
<script src="~/Scripts/jquery.dataTables.min.js"></script>
<script src="~/Scripts/bootstrap.js"></script>
<script src="~/Scripts/bootstrap.min.js"></script>
@Scripts.Render("~/Content/themes/base/css")
<script>
$(document).ready(function () {
$('#exampless').DataTable({
"ajax": {
"url": "/home/loaddata",
"type": "GET",
"datatype": "json"
},
"columns": [
{ "data": "Name", "autoWidth": true },
{ "data": "Company", "autoWidth": true }
]
});
});
</script>
}
Update: I was able to get the values from the DataTable with this javascript:
<script>
$('#exampless').on('click', 'tr', function () {
var ddValue = $('td', this).eq(0).text();
var ddText = $('td', this).eq(1).text();
$("#closeMod").click()
});
</script>
I just need help with getting var ddValue and var ddText from the partial view back to the parent view.