$('#dialogHistory').dialog({
autoOpen: false,
width: 800,
height: 600,
resizable: false,
title: 'History',
resizable: false,
modal: true,
open: function (event, ui) {
$(this).load("@Url.Action("_History", new { id = Model.customer_id })");
},
});
$("#lnkHistory").click(function () {
$("#dialogHistory").dialog().dialog('open');
});