I have created tabs using kendo tabs in below format. Now I want to create tabs inside the div and show partial views for each tab by calling a controller action and pass two parameters to that controller action that returns the partial view with its model data. I have checked so many solutions but could get a right solution which would solve my requirement. Can anyone help.
<ul>
@foreach(var item in model)
{
<li>
@item.DocumentVersion
</li>
}
</ul>
@foreach(var Document in model)
{
<div>
<p>
@Document.Details
</p>
</br>
<span>
@Document.File
</span>
</div>
}