В общем нужен грид в попапе, при клике передается айди на сервак, а там йии делает рендерПартиал, код джкуери:
$('#warningHistory').click(function(e) {
$.post(
$(this).data('uri'),
{
'id': $(this).data('id')
},
function(result) {
$('.report-index').append(result);
$('#warningHistoryModal').on('shown.bs.modal', function () {
$('#closeButton').focus()
})
}
);
});
исправил, но както не о чем, еще хуже стало
$('#warningHistory').click(function(e) {
e.preventDefault();
$('#warningHistoryModal').on('shown.bs.modal', function () {
$.post(
$(this).data('uri'),
{
'id': $(this).data('id')
},
function (result) {
$('.report-index').append(result);
}
)
}
);
});