I want to make my sub-menu vertical like dashboard.
look my current sub-menu...
And I want It Just like the bellow..
How can it possible ?
See here my Layout view code Also ...
@* add by Nazmul *@
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
@**@

@*@Html.ImageActionLink(@Url.Content("~/Images/acsol_logo2.png"), " C I M S ", "Index", "Home", new { title = "size", width = 140, height = 50 })*@
@*@Html.ActionLink(" FTSHRIS ", "Index", "Home", null, new { @class = "navbar-brand" })*@
@if (Session["DisplayName"] == null)
{
}
else
{
}
@Html.Partial("_UserMenu")
@*Home Page Banner*@
@RenderSection("Jumbotron", false)
@*Body*@
@RenderBody()
@*Footer*@
@*@Html.Partial("_Footer")*@
@**@
@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/jqueryui")
@Scripts.Render("~/bundles/bootstrap")
@RenderSection("scripts", required: false)
@*
$(document).ready(function () {
fncPagination();
fncFooter();
});
function fncPagination() {
$('#myTable').DataTable({
"aLengthMenu": [[10, 15, 25, 50, -1], [10, 15, 25, 50, "All"]]
});
}*@
$(document).ready(function () {
fncPagination();
fncFooter();
});
function fncPagination() {
$('#myTable').DataTable({
"aLengthMenu": [[10, 15, 25, 50, -1], [10, 15, 25, 50, "All"]],
"ordering": false
});
}
function fncScroll() {
$('#myTable').dataTable({
"scrollX": true,
"scrollY": "200px",
"scrollCollapse": true,
"paging": false
});
}
function fncFooter() {
var docHeight = $(window).height();
var minHeight = 597;
if (docHeight > 750) {
minHeight = 835;
}
//var abc = $('#Jumbotron').is(":visible");
var blnJumbotron = $('#Jumbotron').is(":visible");
if (blnJumbotron == true) {
minHeight = minHeight - $('#Jumbotron').height();
}
var blnUserMenu = $('#UserMenu').is(":visible");
if (blnUserMenu == true) {
minHeight = minHeight - $('#UserMenu').height();
}
var bodyHeight = $('#Body').height();
if (bodyHeight <= minHeight) {
$('#Body').css('min-height', minHeight+'px');
}
}
Please help to solve this problem .
Thanks
Nazmul

SandyPosted Oct 21, 2017, 8:21 AM
Amar SrivastavaPosted Sep 24, 2017, 2:19 PM