mvc_logo

Inspinia ASP.NET Core 3.0

Thank you for purchasing INSPINIA admin theme. If you have any questions about the template, please feel free to contact us via email: support@webapplayers.com.
Thanks very much!

Documentation created: 10/12/2014
Latest update: 12/11/2019
By: WebAppLayers Team
Theme version: 2.9.3

For HTML/CSS documentation go to: Static HTML/CSS documentation.
For Ruby on Rails documentation go to: RAILS documentation.
screen

About the documentation

This documentation is focused on ASP.NET CORE version. It assumes a minimum knowledge of asp.net technology. It describe mainly files and structure in project. Please note that this documentation is dedicated to the main element of the template. With each version, we will try to develop it. But if you have any questions going beyond what is described here don't hesitate to write to us.

Technology and structure

Tool and Technologies used:

  • Visual Studio 2019
  • .Net Core 3.0
  • Bootstrap 4 UI Framework.
  • INSPINIA resources

Folders and files

INSPINIA ASP.NET MVC template consists project files for Visual Studio 2013 with below structure:


ASPNET_Core_3_0_Full_Project/
    ├── Controllers/
    ├── Helpers/
    ├── Models/
    ├── Views/
    ├── appsettings.json
    ├── Program.cs
    ├── Startup.cs 

Main _Layout.cshtml

Main layout are created with few main elements:

  1. _Navigation left sidebar navigation.
  2. _TopNavbar top navigation with second menu.
  3. @RenderBody main container for page elements.
  4. _Footer footer element.
page structure

Layout structure

Page <head /> contains Metadata and CSS bundle files for theme. We use special section AddLocalStyles, to import styles for specific plugins on pages that need it.


<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>@ViewData["Title"] - .NET Core 3.0</title>

    
    @if (IsSectionDefined("Styles"))
            {@RenderSection("Styles", required: false)}

    <environment names="Development">
        <link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.css" />
        <link rel="stylesheet" href="~/lib/font-awesome/css/font-awesome.css" />
        <link rel="stylesheet" href="~/css/animate.css" />
        <link rel="stylesheet" href="~/css/style.css" asp-append-version="true" />
    </environment>
    <environment names="Staging,Production">
        <link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
        <link rel="stylesheet" href="~/lib/font-awesome/css/font-awesome.min.css" />
        <link rel="stylesheet" href="~/css/animate.css" />
        <link rel="stylesheet" href="~/css/style.css" asp-append-version="true" />
    </environment>


</head>

Main file structure

IMPORTANT - Main stucture of _Layout.cshtml file.

 <!-- Skin configuration box -->
    <!-- <partial name="_SkinConfig" /> -->
    <!-- Wrapper-->
    <div id="wrapper" class="@Html.PageClass()">

        <!-- Navigation -->
        <partial name="_Navigation" />

        <!-- Page wraper -->
        <div id="page-wrapper" class="gray-bg @ViewBag.SpecialClass">

            <!-- Top Navbar -->
            <partial name="_TopNavbar" />

            <!-- Main view  -->
            @RenderBody()

            <!-- Footer -->
            <partial name="_Footer" />

        </div>
        <!-- End page wrapper-->
        <!-- Right Sidebar -->
        <partial name="_RightSidebar" />

    </div>
    <!-- End wrapper-->
            

Page Script

On bottom of file are bundle script located. _Layout.cshtml contains all major plugin scripts and Inspinia scripts. In section Scripts, will be import scripts for specific plugins on pages that need it.


    @RenderSection("toast", required: false)

    <environment names="Development">
        <script src="~/lib/jquery/dist/jquery.js"></script>
        <script src="~/lib/Popper/popper.min.js"></script>
        <script src="~/lib/bootstrap/dist/js/bootstrap.js"></script>
        <script src="~/lib/metisMenu/dist/jquery.metisMenu.js"></script>
        <script src="~/lib/slimScroll/jquery.slimscroll.js"></script>
        <script src="~/lib/pace/pace.js"></script>
        <script src="~/js/script.js" asp-append-version="true"></script>

        <!-- Only for demo purpose -->
        <script src="~/js/skin.config.js"></script>
    </environment>
    <environment names="Staging,Production">
        <script src="~/lib/jquery/dist/jquery.min.js"></script>
        <script src="~/lib/Popper/popper.min.js"></script>
        <script src="~/lib/bootstrap/dist/js/bootstrap.min.js"></script>
        <script src="~/lib/metisMenu/dist/jquery.metisMenu.js"></script>
        <script src="~/lib/pace/pace.min.js"></script>
        <script src="~/lib/slimScroll/jquery.slimscroll.min.js"></script>
        <script src="~/js/script.js" asp-append-version="true"></script>
    </environment>

    @RenderSection("scripts", required: false)


Adding Plugin (special styles file and scripts)

To add for example iCheck plugin (plugin for custom checkbox input) at the bottom of page (view) you have to specifie Styles and Scripts with name plugin as example below. Or if you want to add it to entire app you can add it to _Layout file.


@section Styles {
    <environment names="Development,Staging,Production">
        <link rel="stylesheet" href="~/lib/plugin.css" />
}

@section Scripts {
    <environment names="Development,Staging,Production">
        <script src="~/lib/plugin.js"></script>
}

If you need any help with render section feel free to write me at support@webapplayers.com.


Options

Inspinia provide few option for you layout app. There are:

  • Fixed sidebar
  • Fixed navbar
  • Fixed footer
  • RTL support
  • Layout 2 (top navigation)
  • Off canvas menu
  • Skins

Fixed sidebar

Fixed sidebar is a sidebar that is sticked on screen.

To add fixed sidebar you need to add .fixed-sidebar class to body.


    <body class="fixed-sidebar">

Fixed navbar

Fixed navbar is a top navbar that is sticked on screen.

To add fixed sidebar you need to add .fixed-nav class to body.


    <body class="fixed-nav">

Next we will need to change navbar from static to fixed in Shared/_TopNavbar.cshtml file. Change .navbar-static-top class to navbar-fixed-top


<nav class="navbar navbar-fixed-top" role="navigation">

Fixed navbar 2

Fixed navbar 2 is a top navbar that is sticked on screen and it's width is the same as the width of wrapper

To add fixed sidebar you need to add .fixed-nav class and .fixed-nav-basic class to body.


    <body class="fixed-nav fixed-nav-basic">

Next we will need to change navbar from static to fixed in Shared/_TopNavbar.cshtml file. Change .navbar-static-top class to navbar-fixed-top


<nav class="navbar navbar-fixed-top" role="navigation">

Fixed navbar 2 works only on primary layout

Fixed footer

Fixed footer is a bottom footer that is sticked on screen.

To add fixed bottom footer you just need to add .fixed class to footer class.


    <div class="footer fixed">

Right-to-Left Language Support

Adding support for language written in a Right-To-Left (RTL) direction.

To add RTL support you will need to add new .rtls class to body element


    <body class="rtls">

Next you will need to add new bootstrap rtl support library bootstrap-rtl. Add new line with bootstra-rtl to the head section:

    <environment names="Staging,Production">
        <link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
        <link rel="stylesheet" href="~/lib/bootstrap-rtl/bootstrap-rtl.css" />
        <link rel="stylesheet" href="~/lib/font-awesome/css/font-awesome.min.css" />
        <link rel="stylesheet" href="~/css/animate.css" />
        <link rel="stylesheet" href="~/css/style.css" asp-append-version="true" />
    </environment>

After that you will have RTL support similar to this:

Layout 2

Layout 2 is a top navigation with centered content layout.

For layout 2 we prepared special examples files in Shared folder

  • _Layout_2.cshtml
  • _TopNavbar2.cshtml

To use layout 2 all you need to do is to specify new layout in top of the page:


@{
    Layout = "~/Views/Shared/_Layout_2.cshtml";
    ViewData["Title"] = "Dashboard v.4";
}

Layout 2 with example code look like this:

Off canvas menu

Off canvas menu is a menu that not change the width of main wrapper page. It appear on top of the page.

To use off canvas menu you just need to use _Layout4.cshtml. The body has special .canvas-manu class and it include special _NavigationOffCanvas.

Skins

Inspinai theme has 3 diferent skins

To change skin you just have to add skin class to body element.

For example: to add skin Blue skin you just need to add .skin-1 class to body element.

In LESS files skins.less you can find style for the skin. Below is a representation of css classes demand color skin.

  • .skin-1 - Blue Light
  • .skin-2 - Inspinia Ultra {for support with Inspinai Ultra please contact with support@webapplayers.com}
  • .skin-3 - Yellow/purple
  • .light-skin - Light Skin
  • .md-skin - Material Design Skin (In demo Inspinia Material Design version has also fixed sidebar and fixed navbar option)
  • Defaut skin does not need any class

Theme config

Theme config is the configuration box for setting options in live preview. IAll options from theme config you should enabled via code.


ASPNET_Core_3_0_Seed_Project

It is an application skeleton for a typical ASP.NET CORE web app. You can use it to quickly bootstrap your webapp projects and dev environment for these projects.

It is a best start for new app. It has all needed scripts and style.

Change log 2.9.2 -> 2.9.3

    Changed Inspinia js files
  • script.js - Fix width calculation for body-small class

  • CSS/LESS/SCSS/SASS
  • Add new light-skin css rules
  • Fix carousel side effect on landing page
  • Slightly improve ibox style
  • Add custom style for Toast Bootstrap
  • Add custom style for upgraded Touch Spin library

  • Updates
  • Bootstrap library to 4.3.1 - lib folder
  • TouchSpin library to 4.2.5 - lib folder
  • ChartJS library to 2.9.2 - lib folder
  • Select 2 library to 4.0.12 - lib folder
  • RangeSlider library to 2.3.0 - lib folder
  • DatePicker library to 1.9.0 - lib folder
  • Awesome Bootstrap Checkbox library - lib folder

  • Replace
  • Bootstrap Tour library to Bootstrap Tourist - css/js folder

  • Deprecate
  • Toastr notification library - Since 2.9.3 Inspinia use Bootstrap toast notification feature
  • jqGrid
  • Choosen

  • Changed views files
  • Dashboard_2.cshtml, Dashboard_3.cshtml, Dashboard_4.cshtml, Dashboard_4_1.cshtml - Fix title labels position - wrapp them with ibox-tools element
  • Project_detail.cshtml - fix grid system
  • Profile2.cshtml, social_feed.cshtml - remove double caret
  • NotFoundError.cshtml - fix position form - center
  • LiveFavicon.cshtml - add preventDefault to click handler
  • Icons.cshtml - fix presentation div
  • Projects.cshtml - improve search form
  • Dashboard_3.cshtml - fix right sidebar code

Change log 2.8 -> 2.9.2

    Changed Inspinia js files
  • inspinia.js - Migrate main wrapper to flex layout - no more fix_height() function

  • CSS/LESS/SCSS/SASS
  • Fix footer with fixed sidebar width issue
  • Fix border size in third level menu
  • Fix align text in top navigation
  • Fix navbar width on Material Design skin with fixed sidebar option enabled
  • Fix tabs width and bottom border issue in left and right orientation
  • Fix wrapper size in Material Design Skin with fixed options
  • Fix cropped download button issue

  • Changed views files
  • Views/Forms/Advanced.cshtml - update cropper presentation code and script for donwload

  • Updates
  • plugins/cropper

Change log 2.7 -> 2.7.1

    Changed Inspinia js files
  • inspinia.js - correct typos in fix_height function
  • inspinia.js - update navbar-minimalize event handler

  • CSS/LESS/SCSS/SASS
  • Fix media-body style on right sidebar
  • Fix form-control style to allow inout sizing
  • Fix min-height issue with small content
  • Fix background menu on md-skin
  • Fix tabs in top-navigation layout
  • Fix label style to release sizing option

Change log 2.6.2 -> 2.7

    New view files
  • Views/AppViews/ActivityStream.cshtml
  • Views/Miscellaneous/PasswordMeter.cshtml
  • Views/Miscellaneous/SpinnersUsage.cshtml
  • Views/Miscellaneous/TextSpinners.cshtml

  • Changed views files
  • Views/Shared/_Navigation.cshtml - add new menu elements for new views
  • Views/UIElements/Icons.cshtml - update font awesome icons to new set
  • Views/Miscellaneous/AgileBoard.cshtml - add support for touch gestures - @Scripts.Render("~/plugins/touchPunch")
  • Views/UIElements/DraggablePanels.cshtml - add support for touch gestures - @Scripts.Render("~/plugins/touchPunch")
  • Views/UIElements/ResizeablePanels.cshtml - add support for touch gestures - @Scripts.Render("~/plugins/touchPunch")
  • Views/Forms/Advanced.cshtml - add new example for switchery control
  • Views/Miscellaneous/LoadingButtons.cshtml - update bind method for ladda example buttons
  • Views/UIElements/HelperClasses.cshtml - change css name in border examples
  • Views/Dashboards/Dashboard_3.cshtml - update css class of sidebar
  • Views/Layouts/Index.cshtml - correct typos in image names and descriptions

  • Changed Inspinia js files
  • inspinia.js - update collapse-link click functions
  • inspinia.js - update fix_height functions

  • Updates
  • plugins/dropzone
  • plugins/fullcalendar
  • plugins/chartJs
  • plugins/summernote
  • content/animate.css

  • Updates
  • Scripts/jquery-3.1.1.min.js
  • Scripts/plugins/dataTables / CSS
  • Scripts/plugins/switchery / CSS
  • Scripts/plugins/jquery-ui / CSS
  • Scripts/plugins/steps / CSS
  • Scripts/plugins/validation
  • fonts/font-awesome

  • New plugins
  • Scripts/plugins/touchpunch
  • Scripts/plugins/pwstrength
  • Content/plugins/textSpinners

  • Updates Bundle
  • App_start/BundleConfig.cs - Add bundle for new plugins

  • CSS/LESS/SCSS/SASS
  • Add styles for new pages
  • Fix jumping menu on landing page
  • Fix bg-colors
  • Remove rules for support old IE
  • Add styles for third level menu on md-skin
  • Improve select2 styles
  • Improve menu style
  • Clear overwrite native media-body classes
  • Improve few styles for IE
  • Improve style for summernote
  • Correct selected typo
  • Fix chat-avatar class rules
  • Fix typo in css preprocessor variables

Change log 2.6 -> 2.6.2


    Updates
  • Bootstrap to 3.3.7

  • CSS/LESS/SCSS/SASS
  • Fix the issue with hidden href on mobile mini navbar
  • Fix the flickering menu
  • Fix Safari modal issue
  • Fix Summernote fullscreen mode
  • Fix css width helper classes
  • Improve content height on fixed navbar
  • Improve landing page on mobile view

Change log 2.5 -> 2.6

    New view files
  • Views/Forms/Autocomplete.cshtml
  • Views/Miscellaneous/Datamaps.cshtml
  • Views/Miscellaneous/PdfViewer.cshtml
  • Views/Miscellaneous/SocialButtons.cshtml
  • Views/UIElements/HelperClasses.cshtml

  • Changed views files
  • Views/Shared/_Navigation.cshtml - add new menu elements for new views
  • Forms/Dashboard_1.cshtml - update script for new Chartjs version
  • Forms/Dashboard_3.cshtml - update script for new Chartjs version
  • Forms/Dashboard_4.cshtml - update script for new Chartjs version
  • Forms/Dashboard_4_1.cshtml - update script for new Chartjs version
  • Graphs/Chartjs.cshtml - update script for new Chartjs version
  • Forms/Advanced.cshtml - add new features: input tag, dual select
  • Forms/FileUpload.cshtml - add new input components, update dropzon
  • Tables/DataTables.cshtml - remove jeditable library

  • New Inspinia files
  • pdf/example.pdf
  • Scripts/api/typehead_collection.json

  • Changed Inspinia js files
  • inspinia.js - update click functions

  • Updates
  • plugins/dropzone
  • plugins/fullcalendar
  • plugins/chartJs
  • plugins/summernote
  • content/animate.css

  • New plugins
  • plugins/bootstrap-taginput
  • plugins/dualListbox
  • plugins/pdfjs
  • plugins/topojson
  • plugins/typehead
  • plugins/bootstrapSocial

  • Updates Bundle
  • App_start/BundleConfig.cs - Add bundle for new plugins

  • CSS/LESS/SCSS/SASS
  • Add styles for new pages
  • Fix menu jumping issue
  • Improve print mode for Firefox
  • Improve chosen colors
  • Fix boxes layout with md-skin
  • Improve custom swithc style
  • Add few new css classes - helper classes

Change log 2.4 -> 2.5

2.5 version fully focused on update AngularJS projects. New features and views will be added to separate 2.6 version.

Change log 2.3 -> 2.4

    New view files
  • Views/Graphs/C3charts.cshtml
  • Views/Ecommerce/Cart.cshtml
  • Views/UIElements/ResizeablePanels.cshtml
  • Views/Forms/Markdown.cshtml
  • Views/Miscellaneous/Clipboard.cshtml
  • Views/Miscellaneous/I18support.cshtml
  • Views/Miscellaneous/LoadingButtons.cshtml
  • Views/Miscellaneous/Tour.cshtml
  • Views/Miscellaneous/Truncate.cshtml

  • Changed views files
  • Views/Shared/_Navigation.cshtml - add new menu elements for new views
  • Miscellaneous/AgileBoard.cshtml - add example code for serialize list
  • Forms/Advanced.cshtml - add new Touch spin control
  • Landing/Index.cshtml - update page-scroll click event to close menu on select in mobile
  • Shared/_SkinConfig.cshtml - add new option for fixed nav bar
  • Tables/DataTables.cshtml - replace old swf buttons with new button plugin (update datatables library)
  • UIElements/Video.cshtml - add script for handle full screen video option

  • New Inspinia js files
  • locales/en.json
  • locales/es.json

  • Changed Inspinia js files
  • inspinia.js - update fix_height function
  • inspinia.js - update SmoothlyMenu function

  • Updates
  • plugins/bootstrap - update to 3.3.6
  • plugins/dataTables - create on compact datatables generate in official builder: https://datatables.net/download/index
  • plugins/pace - update to 1.0.2

  • New plugins
  • plugins/c3 (with css files)
  • plugins/bootstrap-markdow (with css files)
  • plugins/d3
  • plugins/clipboard
  • plugins/dotdotdot
  • plugins/i18next
  • plugins/ladda (with css files)
  • plugins/touchspin (with css files)
  • plugins/bootstrapTour (with css files)

  • New images
  • Images/flags- Set of flags images

  • Updates Bundle
  • App_start/BundleConfig.cs - Add bundle for new plugins

  • CSS/LESS/SCSS/SASS
  • Add styles for new pages
  • Fix buttons shadow on Chrome
  • Fix dropdown text colour on md-skin
  • Fix pace.js on fixed navbar option
  • Fix few glitch animation effect
  • Improve nav-tabs on mobile devices
  • Fix second level menu on md-skin
  • Improve RTL mode
  • Add new fixed navbar option
  • Ipmore print mode

Change log 2.0/2.1 -> 2.2

Change log 2.2 -> 2.3

    New view files
  • Views/AppViews/Contacts2.cshtml
  • Views/AppViews/Profile2.cshtml
  • Views/AppViews/VoteList.cshtml
  • Views/Miscellaneous/Masonry.cshtml
  • Views/Ecommerce/ProductDetail.cshtml
  • Views/Ecommerce/Payments.cshtml
  • Views/Gallery/SlickCarusela.cshtml
  • Views/Dashboards/Dashboard_5.cshtml

  • Changed views files
  • Views/Shared/_Navigation.cshtml - add new menu elements for new views
  • Views/UIElements/TablesPanels.cshtml - add example of fullscreen panel and slim scroll panel
  • Views/Forms/Advanced.cshtml - Add select2 examples

  • New Inspinia js files
  • No new files

  • Changed Inspinia js files
  • Scripts/app/inspinia.js - Add function for handle full screen ibox

  • Updates
  • Bootstrap - update to 3.3.5
  • Scripts/plugins/dataTables - update to 1.10.8

  • New plugins
  • Scripts/plugins/slick (with css files)
  • Scripts/plugins/select2 (with css files)
  • Scripts/plugins/masonry

  • New images
  • Content/patterns- Add images for header in Material Design skin

  • New Controllers
  • No new files

  • Update Controllers
  • Controllers/AppViews.csController - add new pages for views
  • Controllers/MiscellaneousController.cs - add new pages for views
  • Controllers/EcommerceController.cs - add new pages for views
  • Controllers/DashboardsController.cs - add new pages for views

  • Updates Bundle
  • App_start/BundleConfig.cs - Add bundle for new plugins

  • CSS/SCSS/SASS
  • Add styles for new pages
  • Add new md-skin styles
  • Fix ibox-tools when title is large
  • Fix landing page menu on small devices
  • Fix modal open backdrop with animate.css effect
  • Fix dropdown orientation under ibox
  • Fix profile menu on fixed sidebar

Change log 2.0/2.1 -> 2.2

    New view files
  • Views/Graphs/Chartist.cshtml
  • Views/Metrics/Index.cshtml
  • Views/AppViews/SocialFeed.cshtml
  • Views/Miscellaneous/SweetAlert.cshtml
  • Views/Tables/FooTables.cshtml
  • Views/UIElements/Tabs.cshtml
  • Views/Landing/Index.cshtml (incorporate to admin)
  • Views/Ecommerce/Orders.cshtml
  • Views/Ecommerce/ProductEdit.cshtml
  • Views/Ecommerce/ProductsGrid.cshtml
  • Views/Ecommerce/ProductsList.cshtml

  • Changed views files
  • Views/Shared/_Navigation.cshtml - add new menu elements for new views
  • Views/Shared/_Navigation.cshtml - added ".metismenu" class to nav element id="side-menu" (new version of metisMenu)
  • Views/UIElements/TablesPanels.cshtml - add example of footer to panel and initial collapsed panel
  • Views/Miscellaneous/Chat_view.cshtml - Add left/right class to chat panels
  • Views/AppViews/Article.cshtml - Add example of comments section
  • Views/Landing/Index.cshtml - Add new sections: timeline and comments
  • Views/Forms/Advanced.cshtml - Add new new plugins

  • New Inspinia js files
  • No new files

  • Changed Inspinia js files
  • Scripts/app/inspinia.js - Update fix_height for handle height wrapper on fixed-nav

  • Updates
  • Scripts/plugins/metisMenu - update to 2.0.2
  • Scripts/plugins/slimscrol - update to 1.3.6
  • Scripts/plugins/jvectormap - update to 2.0.2
  • Scripts/plugins/fullcalendar/moment.min.js - update to 2.9.0

  • New plugins
  • Scripts/plugins/clockpicker (with css files)
  • Scripts/plugins/daterangepicker (with css files)
  • Scripts/plugins/footable (with css files)
  • Scripts/plugins/sweetalert (with css files)
  • Scripts/plugins/chartist
  • Content/plugins/awesome-bootstrap-checkbox

  • New images
  • Content/landing - Full folder of images used in landing page

  • New Controllers
  • Controllers/LandingController.cs
  • Controllers/EcommerceController.cs
  • Controllers/MetricsController.cs

  • Update Controllers
  • Controllers/AppViews.cs - add new pages for views
  • Controllers/Graphs.cs - add new pages for views
  • Controllers/Miscellaneous.cs - add new pages for views
  • Controllers/Tables.cs - add new pages for views
  • Controllers/UIElements.cs - add new pages for views

  • Updates Bundle
  • App_start/BundleConfig.cs - Add bundle for new plugins

  • CSS
  • Add styles for new pages
  • Add new metisMenu style
  • Add landing page styles
  • Add chat-discussion left/right class
  • Fix z-index of modal-dialog
  • Fix margins on wrapper when fixed-nav is enabled

Change log 2.0 - 2.1

Version 2.1 is mainly focused on MeteorJS to provide Meteor version.

Please stay tuned for 2.2 version to get new features for ASP.NET MVC5 version.

Change log 1.9 -> 2.0

    New view files
  • Views/AppViews/Article.cshtml
  • Views/AppViews/Blog.cshtml
  • Views/AppViews/Clients.cshtml
  • Views/AppViews/IssueTracker.cshtml
  • Views/AppViews/OutlookView.cshtml
  • Views/AppViews/TeamsBoard.cshtml
  • Views/Layouts/OffCanvas.cshtml
  • Views/Miscellaneous/AgileBoard.cshtml
  • Views/Miscellaneous/Diff.cshtml
  • Views/Miscellaneous/IdleTimer.cshtml
  • Views/Miscellaneous/LiveFavicon.cshtml
  • Views/Miscellaneous/Spinners.cshtml
  • Views/Pages/ForgotPassword.cshtml
  • Views/Shared/_Layout_3.cshtml
  • Views/Shared/_Layout_4.cshtml
  • Views/Shared/_NavigationOffCanvas.cshtml
  • Views/Shared/_RightSidebar.cshtml

  • Changed views files
  • Views/Shared/_Layout.cshtml - Add new right sidebar (@Html.Partial("_RightSidebar"))
  • Views/Shared/_Navigation.cshtml - Add new menu elements
  • Views/Shared/_TopNavbar.cshtml - Add new menu element for right sidebar
  • Views/Dashboards/Dashboard_1.cshtml - Add small-chat element
  • Views/Dashboards/Dashboard_2.cshtml - Add small-chat element
  • Views/Dashboards/Dashboard_3.cshtml - Add small-chat element
  • Views/Dashboards/Dashboard_4_1.cshtml - Add small-chat element
  • Views/AppViews/Faq.cshtml - Fix the collapse effect - Create new div element .faq-answer before p answer.

  • New Inspinia js files
  • No new files

  • Changed Inspinia js files
  • inspinia.js - Update fix_height function, add local storage handler, add functions for small-chat and right-sidebar

  • Updates
  • Scripts/plugins/pace - update Pace to 1.0
  • Scripts/morris/morris.js - update to 0.5
  • bootstrap - update to 3.3.4

  • New plugins
  • Scripts/plugins/diff_match_patch - Google algorithm for diff functionality
  • Scripts/plugins/preetyTextDiff - jQuery plugin for dif
  • Scripts/plugins/idle_timer
  • Scripts/plugins/tinycon

  • New images
  • img/full_height.jpg
  • img/off_canvas.jpg

  • CSS/SCSS/SASS
  • Add styles for new pages
  • Improve btn-link
  • Add colapsed class for initial collapsed ibox
  • Fix margins for footer with sidebar fixed
  • Fix responsive in login page

  • New Controllers
  • No new files

  • Update Controllers
  • Controllers/AppViews.cs - add new pages for views
  • Controllers/Pages.cs - add new pages for views
  • Controllers/Miscellaneous.cs - add new pages for views
  • Controllers/Layouts.cs - add new pages for views

  • Updates Bundle
  • App_start/BundleConfig.cs - Add bundle for new plugins, Update Font Awesome bundle

Change log 1.9 -> 1.9.2

Version 1.9.2 is mainly focused on Ruby on Rails to provide Rails version.

Please stay tuned for 2.0 version to get new features for Angular version.

Change log 1.8 -> 1.9

    New view files
  • Views/Miscellaneous/Chat_view.cshtml
  • Views/Dashboard/Dashboard_4.cshtml
  • Views/Dashboard/Dashboard_4_1.cshtml
  • Views/Layouts/Index.cshtml
  • Views/Pages/Login_2.cshtml
  • Views/Miscellaneous/Tree_view.cshtml
  • Views/Shared/_Layout_2.cshtml
  • Views/Shared/_TopNavbar2.cshtml

  • Changed views files
  • Views/Shared/_Navigation.cshtml - Changed to add new menu items
  • Views/Gallery/BasciGallery.html - Replace old plugin with new blueimp lightbox gallery

  • New js files
  • No new files

  • Changed js files
  • No changes

  • Updates
  • Scripts/plugins/flot - update Flot chart library to version 0.8.3
  • font-awesome - update Font awesome to version 4.3.0

  • New plugins
  • Scripts//plugins/blueimp - new plugin for lightbox gallery
  • Scripts//plugins/jsTree - new plugin for tree view

  • New images
  • Images/gallery - new set of images for lightbox gallery page
  • Images/dashbbard4_1.jpg
  • Images/dashbbard4_2.jpg

  • New Controllers
  • Controllers/LayoutsController.cs - new controller for layout view

  • Update Controllers
  • Controllers/MiscellaneousController.cs - add new pages for views
  • Controllers/PagesController.cs - add new pages for views

  • Updates Bundle
  • App_start/BundleConfig.cs - Some plugin have own images so path to the bundle has to be relative

Contact

Contact as with email: support@webapplayers.com