$(function () {
$('#id1').change(function () {
$.getJSON("@Url.Action("DataInformation", "Implementation_Datasheet")", { Id: $('#id1').val() },
function (data) {
how to get data from above function?/.
});
});
});
Abhineet SrivastavaPosted Aug 15, 2014, 6:41 AM
Sasi ReddyPosted Aug 14, 2014, 6:41 AM
My controller is like below
public JsonResult DataInformation(int Id)
my view is like below
I need to get data for name and unitcost
how to do that ?..
Dipankar BiswasPosted Aug 14, 2014, 5:01 AM