Bootstrap navbar hamburger button is not working in Syncfusion ASP.NET MVC Application Project

Created an ASP.NET MVC Application project in Visual studio 2022.


When I click on the hamburger button in the navbar it should open the menu as it does with bootstrap navbars but it does not work at all. Nothing happens when this button is clicked.

I have tried with both Bootstrap v4 and v5 project templates, the same issue persists. 





5 Replies

AD Abishake Dakshinamoorthy Syncfusion Team March 28, 2022 11:33 AM UTC

Hi Junaid, 

Thank you for contacting Syncfusion support. 

We are reproduced this issue form our Syncfusion ASP.NET MVC project template. We logged this issue as bug report. You can track below feedback link for further update about this issue.

https://www.syncfusion.com/feedback/33718

As of now, could you please add below script line in layout file at end of body tag in your application to resolve this issue from your side? We will include these changes in our project template and update the status in above feedback link

@Scripts.Render("~/bundles/jquery") 
@Scripts.Render("~/bundles/bootstrap")

 

Regards,
Abishake Dakshinamoorthy 



JU Junaid March 28, 2022 01:59 PM UTC

I have applied it but the issue remained the same. 


Screenshot from page source: 



AD Abishake Dakshinamoorthy Syncfusion Team March 29, 2022 09:16 AM UTC

Hi Junaid,


We checked for reproducing this issue by adding the below code in the layout file as per your’ s code from our side. But we are unable to replicate this issue and the navbar is working properly.


    <script src="/Scripts/jquery-3.4.1.js"></script>

    <script src="/Scripts/bootstrap.js"></script>

    <script src="/Scripts/respond.js"></script>

Could you please share the below details to check further about this issue from our end?

1. Share the Layout.cshtml file content from your application.

2. Share the project file (.csproj) content from your application.

3. Share the project framework version to check this issue.


Regards,
Abishake Dakshinamoorthy



JU Junaid March 29, 2022 04:09 PM UTC


_Layout.cshtml


<!DOCTYPE html>

<html>

<head>

    <meta charset="utf-8" />

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>@ViewBag.Title - Syncfusion MVC App</title>

    @Styles.Render("~/Content/css")


    @Styles.Render("~/Content/ej2/bootstrap5.css")

    @Scripts.Render("~/Scripts/ej2/ej2.min.js")

</head>

<body>

    <div class="navbar navbar-expand-lg navbar-light bg-light">

        <a class="navbar-brand" rel='nofollow' href="/home/index">Syncfusion MVC App</a>

        <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navlinks" aria-label="Toggle navigation">

            <span class="navbar-toggler-icon"></span>

        </button>


        <div class="collapse navbar-collapse" id="navlinks">

            <ul class="navbar-nav mr-auto">

                <li class="nav-item">

                    <a class="nav-link" rel='nofollow' href="/home/index">Users<span class="sr-only">(current)</span></a>

                </li>

                <li class="nav-item">

                    <a class="nav-link" rel='nofollow' href="/home/plans">Plans</a>

                </li>

                <li class="nav-item">

                    <a class="nav-link" rel='nofollow' href="/home/status">Status</a>

                </li>

                <li class="nav-item">

                    <a class="nav-link" rel='nofollow' href="/home/products">Products</a>

                </li>

                <li class="nav-item">

                    <a class="nav-link" rel='nofollow' href="/home/active">Active</a>

                </li>

            </ul>

        </div>

    </div>

    <div class="container body-content mt-4">

        @RenderBody()

    </div>

    <footer>

        <div class="container body-content">

            <hr />

            <p>© @DateTime.Now.Year - Syncfusion MVC App</p>

        </div>

    </footer>


    @Scripts.Render("~/bundles/jquery")

    @Scripts.Render("~/bundles/bootstrap")


    @Html.EJS().ScriptManager()

    @RenderSection("scripts", required: false)

</body>

</html>


.csproj


<?xml version="1.0" encoding="utf-8"?>

<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

  <Import Project="..\packages\EntityFramework.6.4.4\build\EntityFramework.props" Condition="Exists('..\packages\EntityFramework.6.4.4\build\EntityFramework.props')" />

  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />

  <PropertyGroup>

    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>

    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>

    <ProductVersion>

    </ProductVersion>

    <SchemaVersion>2.0</SchemaVersion>

    <ProjectGuid>{CC7B76EF-3C30-4B99-AD72-2D8EA2C858EC}</ProjectGuid>

    <ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>

    <OutputType>Library</OutputType>

    <AppDesignerFolder>Properties</AppDesignerFolder>

    <RootNamespace>SyncfusionMvc_InlineCrud</RootNamespace>

    <AssemblyName>SyncfusionMvc_InlineCrud</AssemblyName>

    <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>

    <MvcBuildViews>false</MvcBuildViews>

    <UseIISExpress>true</UseIISExpress>

    <IISExpressSSLPort />

    <IISExpressAnonymousAuthentication />

    <IISExpressWindowsAuthentication />

    <IISExpressUseClassicPipelineMode />

    <TypeScriptLib>dom,es2015</TypeScriptLib>

    <Use64BitIISExpress />

    <UseGlobalApplicationHostFile />

    <NuGetPackageImportStamp>

    </NuGetPackageImportStamp>

  </PropertyGroup>

  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">

    <DebugSymbols>true</DebugSymbols>

    <DebugType>full</DebugType>

    <Optimize>false</Optimize>

    <OutputPath>bin\</OutputPath>

    <DefineConstants>DEBUG;TRACE</DefineConstants>

    <ErrorReport>prompt</ErrorReport>

    <WarningLevel>4</WarningLevel>

  </PropertyGroup>

  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">

    <DebugType>pdbonly</DebugType>

    <Optimize>true</Optimize>

    <OutputPath>bin\</OutputPath>

    <DefineConstants>TRACE</DefineConstants>

    <ErrorReport>prompt</ErrorReport>

    <WarningLevel>4</WarningLevel>

  </PropertyGroup>

  <ItemGroup>

    <Reference Include="Antlr3.Runtime, Version=3.5.0.2, Culture=neutral, PublicKeyToken=eb42632606e9261f, processorArchitecture=MSIL">

      <HintPath>..\packages\Antlr.3.5.0.2\lib\Antlr3.Runtime.dll</HintPath>

    </Reference>

    <Reference Include="AutoMapper, Version=9.0.0.0, Culture=neutral, PublicKeyToken=be96cd2c38ef1005, processorArchitecture=MSIL">

      <HintPath>..\packages\AutoMapper.9.0.0\lib\net461\AutoMapper.dll</HintPath>

    </Reference>

    <Reference Include="EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">

      <HintPath>..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.dll</HintPath>

    </Reference>

    <Reference Include="EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">

      <HintPath>..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.SqlServer.dll</HintPath>

    </Reference>

    <Reference Include="Microsoft.AspNet.Identity.Core, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">

      <HintPath>..\packages\Microsoft.AspNet.Identity.Core.2.2.3\lib\net45\Microsoft.AspNet.Identity.Core.dll</HintPath>

    </Reference>

    <Reference Include="Microsoft.AspNet.Identity.EntityFramework, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">

      <HintPath>..\packages\Microsoft.AspNet.Identity.EntityFramework.2.2.3\lib\net45\Microsoft.AspNet.Identity.EntityFramework.dll</HintPath>

    </Reference>

    <Reference Include="Microsoft.AspNet.Identity.Owin, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">

      <HintPath>..\packages\Microsoft.AspNet.Identity.Owin.2.2.3\lib\net45\Microsoft.AspNet.Identity.Owin.dll</HintPath>

    </Reference>

    <Reference Include="Microsoft.CSharp" />

    <Reference Include="Microsoft.Owin, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">

      <HintPath>..\packages\Microsoft.Owin.4.0.1\lib\net45\Microsoft.Owin.dll</HintPath>

    </Reference>

    <Reference Include="Microsoft.Owin.Host.SystemWeb, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">

      <HintPath>..\packages\Microsoft.Owin.Host.SystemWeb.4.0.1\lib\net45\Microsoft.Owin.Host.SystemWeb.dll</HintPath>

    </Reference>

    <Reference Include="Microsoft.Owin.Security, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">

      <HintPath>..\packages\Microsoft.Owin.Security.4.0.1\lib\net45\Microsoft.Owin.Security.dll</HintPath>

    </Reference>

    <Reference Include="Microsoft.Owin.Security.Cookies, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">

      <HintPath>..\packages\Microsoft.Owin.Security.Cookies.4.0.1\lib\net45\Microsoft.Owin.Security.Cookies.dll</HintPath>

    </Reference>

    <Reference Include="Microsoft.Owin.Security.Facebook, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">

      <HintPath>..\packages\Microsoft.Owin.Security.Facebook.4.0.1\lib\net45\Microsoft.Owin.Security.Facebook.dll</HintPath>

    </Reference>

    <Reference Include="Microsoft.Owin.Security.Google, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">

      <HintPath>..\packages\Microsoft.Owin.Security.Google.4.0.1\lib\net45\Microsoft.Owin.Security.Google.dll</HintPath>

    </Reference>

    <Reference Include="Microsoft.Owin.Security.MicrosoftAccount, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">

      <HintPath>..\packages\Microsoft.Owin.Security.MicrosoftAccount.4.0.1\lib\net45\Microsoft.Owin.Security.MicrosoftAccount.dll</HintPath>

    </Reference>

    <Reference Include="Microsoft.Owin.Security.OAuth, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">

      <HintPath>..\packages\Microsoft.Owin.Security.OAuth.4.0.1\lib\net45\Microsoft.Owin.Security.OAuth.dll</HintPath>

    </Reference>

    <Reference Include="Microsoft.Owin.Security.Twitter, Version=4.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">

      <HintPath>..\packages\Microsoft.Owin.Security.Twitter.4.0.1\lib\net45\Microsoft.Owin.Security.Twitter.dll</HintPath>

    </Reference>

    <Reference Include="Microsoft.Web.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">

      <HintPath>..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>

    </Reference>

    <Reference Include="Newtonsoft.Json, Version=11.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">

      <HintPath>..\packages\Newtonsoft.Json.11.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>

    </Reference>

    <Reference Include="Owin, Version=1.0.0.0, Culture=neutral, PublicKeyToken=f0ebd12fd5e55cc5, processorArchitecture=MSIL">

      <HintPath>..\packages\Owin.1.0\lib\net40\Owin.dll</HintPath>

    </Reference>

    <Reference Include="Syncfusion.EJ2, Version=19.4500.0.56, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89, processorArchitecture=MSIL">

      <HintPath>..\packages\Syncfusion.EJ2.MVC5.19.4.0.56\lib\net45\Syncfusion.EJ2.dll</HintPath>

    </Reference>

    <Reference Include="Syncfusion.Licensing, Version=19.4460.0.56, Culture=neutral, PublicKeyToken=632609b4d040f6b4, processorArchitecture=MSIL">

      <HintPath>..\packages\Syncfusion.Licensing.19.4.0.56\lib\net46\Syncfusion.Licensing.dll</HintPath>

    </Reference>

    <Reference Include="System" />

    <Reference Include="System.Data" />

    <Reference Include="System.Data.Linq" />

    <Reference Include="System.Drawing" />

    <Reference Include="System.Net.Http.Formatting, Version=5.2.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">

      <HintPath>..\packages\Microsoft.AspNet.WebApi.Client.5.2.7\lib\net45\System.Net.Http.Formatting.dll</HintPath>

    </Reference>

    <Reference Include="System.Security" />

    <Reference Include="System.Web.DynamicData" />

    <Reference Include="System.Web.Entity" />

    <Reference Include="System.Web.ApplicationServices" />

    <Reference Include="System.ComponentModel.DataAnnotations" />

    <Reference Include="System.Core" />

    <Reference Include="System.Data.DataSetExtensions" />

    <Reference Include="System.Web.Helpers, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">

      <HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.7\lib\net45\System.Web.Helpers.dll</HintPath>

    </Reference>

    <Reference Include="System.Web.Http, Version=5.2.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">

      <HintPath>..\packages\Microsoft.AspNet.WebApi.Core.5.2.7\lib\net45\System.Web.Http.dll</HintPath>

    </Reference>

    <Reference Include="System.Web.Http.WebHost, Version=5.2.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">

      <HintPath>..\packages\Microsoft.AspNet.WebApi.WebHost.5.2.7\lib\net45\System.Web.Http.WebHost.dll</HintPath>

    </Reference>

    <Reference Include="System.Web.Mvc, Version=5.2.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">

      <HintPath>..\packages\Microsoft.AspNet.Mvc.5.2.7\lib\net45\System.Web.Mvc.dll</HintPath>

    </Reference>

    <Reference Include="System.Web.Optimization, Version=1.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">

      <HintPath>..\packages\Microsoft.AspNet.Web.Optimization.1.1.3\lib\net40\System.Web.Optimization.dll</HintPath>

    </Reference>

    <Reference Include="System.Web.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">

      <HintPath>..\packages\Microsoft.AspNet.Razor.3.2.7\lib\net45\System.Web.Razor.dll</HintPath>

    </Reference>

    <Reference Include="System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">

      <HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.7\lib\net45\System.Web.WebPages.dll</HintPath>

    </Reference>

    <Reference Include="System.Web.WebPages.Deployment, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">

      <HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.7\lib\net45\System.Web.WebPages.Deployment.dll</HintPath>

    </Reference>

    <Reference Include="System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">

      <HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.7\lib\net45\System.Web.WebPages.Razor.dll</HintPath>

    </Reference>

    <Reference Include="System.Xml.Linq" />

    <Reference Include="System.Web" />

    <Reference Include="System.Net.Http" />

    <Reference Include="System.Net.Http.WebRequest" />

    <Reference Include="System.Web.Extensions" />

    <Reference Include="System.Web.Abstractions" />

    <Reference Include="System.Web.Routing" />

    <Reference Include="System.Xml" />

    <Reference Include="System.Configuration" />

    <Reference Include="System.Web.Services" />

    <Reference Include="System.EnterpriseServices" />

    <Reference Include="System.ServiceModel" />

    <Reference Include="System.Runtime.Serialization" />

    <Reference Include="System.Data.SqlServerCe" />

    <Reference Include="WebGrease, Version=1.6.5135.21930, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">

      <HintPath>..\packages\WebGrease.1.6.0\lib\WebGrease.dll</HintPath>

    </Reference>

  </ItemGroup>

  <ItemGroup>

    <Folder Include="App_Data\" />

  </ItemGroup>

  <ItemGroup>

    <Compile Include="App_Start\BundleConfig.cs" />

    <Compile Include="App_Start\FilterConfig.cs" />

    <Compile Include="App_Start\RouteConfig.cs" />

    <Compile Include="Controllers\ActivesController.cs" />

    <Compile Include="Controllers\HomeController.cs" />

    <Compile Include="Controllers\PlansController.cs" />

    <Compile Include="Controllers\ProductsController.cs" />

    <Compile Include="Controllers\StatusController.cs" />

    <Compile Include="Controllers\UsersController.cs" />

    <Compile Include="Data\Active.cs" />

    <Compile Include="Data\ApplicationDbContext.cs" />

    <Compile Include="Data\Plans.cs" />

    <Compile Include="Data\Products.cs" />

    <Compile Include="Data\Status.cs" />

    <Compile Include="Data\Users.cs" />

    <Compile Include="Global.asax.cs">

      <DependentUpon>Global.asax</DependentUpon>

    </Compile>

    <Compile Include="Models\AutoMapperConfig.cs" />

    <Compile Include="Models\DeleteEntryModel.cs" />

    <Compile Include="Models\EditableActiveModel.cs" />

    <Compile Include="Models\EditablePlanModel.cs" />

    <Compile Include="Models\EditableStatusModel.cs" />

    <Compile Include="Models\EditableProductModel.cs" />

    <Compile Include="Models\EditableUserModel.cs" />

    <Compile Include="Models\PlanViewModel.cs" />

    <Compile Include="Models\ActiveViewModel.cs" />

    <Compile Include="Models\StatusViewModel.cs" />

    <Compile Include="Models\ProductViewModel.cs" />

    <Compile Include="Models\UserViewModel.cs" />

    <Compile Include="Properties\AssemblyInfo.cs" />

    <Compile Include="Startup.cs" />

  </ItemGroup>

  <ItemGroup>

    <Content Include="Content\bootstrap-grid.css" />

    <Content Include="Content\bootstrap-grid.min.css" />

    <Content Include="Content\bootstrap-grid.rtl.css" />

    <Content Include="Content\bootstrap-grid.rtl.min.css" />

    <Content Include="Content\bootstrap-reboot.css" />

    <Content Include="Content\bootstrap-reboot.min.css" />

    <Content Include="Content\bootstrap-reboot.rtl.css" />

    <Content Include="Content\bootstrap-reboot.rtl.min.css" />

    <Content Include="Content\bootstrap-utilities.css" />

    <Content Include="Content\bootstrap-utilities.min.css" />

    <Content Include="Content\bootstrap-utilities.rtl.css" />

    <Content Include="Content\bootstrap-utilities.rtl.min.css" />

    <Content Include="Content\bootstrap.css" />

    <Content Include="Content\bootstrap.min.css" />

    <Content Include="Content\bootstrap.rtl.css" />

    <Content Include="Content\bootstrap.rtl.min.css" />

    <Content Include="Content\ej2\bootstrap-dark.css" />

    <Content Include="Content\ej2\bootstrap.css" />

    <Content Include="Content\ej2\bootstrap4.css" />

    <Content Include="Content\ej2\bootstrap5-dark.css" />

    <Content Include="Content\ej2\bootstrap5.css" />

    <Content Include="Content\ej2\compatibility\bootstrap.css" />

    <Content Include="Content\ej2\compatibility\bootstrap4.css" />

    <Content Include="Content\ej2\compatibility\fabric.css" />

    <Content Include="Content\ej2\compatibility\highcontrast.css" />

    <Content Include="Content\ej2\compatibility\material.css" />

    <Content Include="Content\ej2\fabric-dark.css" />

    <Content Include="Content\ej2\fabric.css" />

    <Content Include="Content\ej2\highcontrast.css" />

    <Content Include="Content\ej2\material-dark.css" />

    <Content Include="Content\ej2\material.css" />

    <Content Include="Content\ej2\tailwind-dark.css" />

    <Content Include="Content\ej2\tailwind.css" />

    <Content Include="favicon.ico" />

    <Content Include="fonts\glyphicons-halflings-regular.svg" />

    <Content Include="Global.asax" />

    <Content Include="Content\Site.css" />

    <Content Include="Scripts\bootstrap.bundle.js" />

    <Content Include="Scripts\bootstrap.bundle.min.js" />

    <Content Include="Scripts\bootstrap.esm.js" />

    <Content Include="Scripts\bootstrap.esm.min.js" />

    <Content Include="Scripts\bootstrap.js" />

    <Content Include="Scripts\bootstrap.min.js" />

    <Content Include="Content\ej2\compatibility\material.scss" />

    <Content Include="Content\ej2\compatibility\highcontrast.scss" />

    <Content Include="Content\ej2\compatibility\fabric.scss" />

    <Content Include="Content\ej2\compatibility\bootstrap4.scss" />

    <Content Include="Content\ej2\compatibility\bootstrap.scss" />

    <Content Include="Content\bootstrap.rtl.min.css.map" />

    <Content Include="Content\bootstrap.rtl.css.map" />

    <Content Include="Content\bootstrap.min.css.map" />

    <Content Include="Content\bootstrap.css.map" />

    <Content Include="Content\bootstrap-utilities.rtl.min.css.map" />

    <Content Include="Content\bootstrap-utilities.rtl.css.map" />

    <Content Include="Content\bootstrap-utilities.min.css.map" />

    <Content Include="Content\bootstrap-utilities.css.map" />

    <Content Include="Content\bootstrap-reboot.rtl.min.css.map" />

    <Content Include="Content\bootstrap-reboot.rtl.css.map" />

    <Content Include="Content\bootstrap-reboot.min.css.map" />

    <Content Include="Content\bootstrap-reboot.css.map" />

    <Content Include="Content\bootstrap-grid.rtl.min.css.map" />

    <Content Include="Content\bootstrap-grid.rtl.css.map" />

    <Content Include="Content\bootstrap-grid.min.css.map" />

    <Content Include="Content\bootstrap-grid.css.map" />

    <None Include="packages.config" />

    <Content Include="Scripts\bootstrap.min.js.map" />

    <Content Include="Scripts\bootstrap.js.map" />

    <Content Include="Scripts\bootstrap.esm.min.js.map" />

    <Content Include="Scripts\bootstrap.esm.js.map" />

    <Content Include="Scripts\bootstrap.bundle.min.js.map" />

    <Content Include="Scripts\bootstrap.bundle.js.map" />

    <None Include="Scripts\jquery-3.4.1.intellisense.js" />

    <Content Include="Scripts\ej2\ej2.min.js" />

    <Content Include="Scripts\jquery-3.4.1.js" />

    <Content Include="Scripts\jquery-3.4.1.min.js" />

    <Content Include="Scripts\jquery-3.4.1.slim.js" />

    <Content Include="Scripts\jquery-3.4.1.slim.min.js" />

    <Content Include="Scripts\jquery-3.4.1.slim.min.map" />

    <Content Include="Scripts\jquery-3.4.1.min.map" />

    <None Include="Scripts\jquery.validate-vsdoc.js" />

    <Content Include="Scripts\jquery.validate.js" />

    <Content Include="Scripts\jquery.validate.min.js" />

    <Content Include="Scripts\jquery.validate.unobtrusive.js" />

    <Content Include="Scripts\jquery.validate.unobtrusive.min.js" />

    <Content Include="Scripts\modernizr-2.6.2.js" />

    <Content Include="Scripts\modernizr-2.8.3.js" />

    <Content Include="Scripts\respond.js" />

    <Content Include="Scripts\respond.min.js" />

    <Content Include="Scripts\_references.js" />

    <Content Include="Web.config" />

    <Content Include="Web.Debug.config">

      <DependentUpon>Web.config</DependentUpon>

    </Content>

    <Content Include="Web.Release.config">

      <DependentUpon>Web.config</DependentUpon>

    </Content>

    <Content Include="Views\Web.config" />

    <Content Include="Views\_ViewStart.cshtml" />

    <Content Include="Views\Shared\Error.cshtml" />

    <Content Include="Views\Shared\_Layout.cshtml" />

    <Content Include="Views\Home\Index.cshtml" />

    <Content Include="Views\Shared\Lockout.cshtml" />

    <Content Include="Views\Home\Plans.cshtml" />

    <Content Include="Views\Home\Status.cshtml" />

    <Content Include="Views\Home\Products.cshtml" />

    <Content Include="Views\Home\Active.cshtml" />

  </ItemGroup>

  <ItemGroup>

    <Content Include="fonts\glyphicons-halflings-regular.woff" />

    <Content Include="fonts\glyphicons-halflings-regular.ttf" />

    <Content Include="fonts\glyphicons-halflings-regular.eot" />

    <None Include="Project_Readme.html" />

  </ItemGroup>

  <ItemGroup>

    <Service Include="{4A0DDDB5-7A95-4FBF-97CC-616D07737A77}" />

    <Service Include="{508349B6-6B84-4DF5-91F0-309BEEBAD82D}" />

  </ItemGroup>

  <ItemGroup>

    <TypeScriptCompile Include="Scripts\ej2\ej2.d.ts" />

  </ItemGroup>

  <PropertyGroup>

    <VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>

    <VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>

  </PropertyGroup>

  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />

  <Import Project="$(VSToolsPath)\WebApplications\Microsoft.WebApplication.targets" Condition="'$(VSToolsPath)' != ''" />

  <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" Condition="false" />

  <Target Name="MvcBuildViews" AfterTargets="AfterBuild" Condition="'$(MvcBuildViews)'=='true'">

    <AspNetCompiler VirtualPath="temp" PhysicalPath="$(WebProjectOutputDir)" />

  </Target>

  <ProjectExtensions>

    <VisualStudio>

      <FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">

        <WebProjectProperties>

          <UseIIS>True</UseIIS>

          <AutoAssignPort>True</AutoAssignPort>

          <DevelopmentServerPort>0</DevelopmentServerPort>

          <DevelopmentServerVPath>/</DevelopmentServerVPath>

          <IISUrl>http://localhost:55124/</IISUrl>

          <NTLMAuthentication>False</NTLMAuthentication>

          <UseCustomServer>False</UseCustomServer>

          <CustomServerUrl>

          </CustomServerUrl>

          <SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>

        </WebProjectProperties>

      </FlavorProperties>

    </VisualStudio>

  </ProjectExtensions>

  <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">

    <PropertyGroup>

      <ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>

    </PropertyGroup>

    <Error Condition="!Exists('..\packages\EntityFramework.6.4.4\build\EntityFramework.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\EntityFramework.6.4.4\build\EntityFramework.props'))" />

    <Error Condition="!Exists('..\packages\EntityFramework.6.4.4\build\EntityFramework.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\EntityFramework.6.4.4\build\EntityFramework.targets'))" />

  </Target>

  <Import Project="..\packages\EntityFramework.6.4.4\build\EntityFramework.targets" Condition="Exists('..\packages\EntityFramework.6.4.4\build\EntityFramework.targets')" />

  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.

       Other similar extension points exist, see Microsoft.Common.targets.

  <Target Name="BeforeBuild">

  </Target>

  <Target Name="AfterBuild">

  </Target> -->

</Project>


Framework Version: .NET Framework 4.8




AD Abishake Dakshinamoorthy Syncfusion Team March 30, 2022 08:02 AM UTC

Hi Junaid,


We checked provided details with our Syncfusion ASP.NET Core application from our side. Still, we are unable to replicate this issue navbar is working fine as like below screenshot.

Graphical user interface, text, application

Description automatically generated


Could you please check the attached application on your machine and confirm with us whether the issue is resolved or not?


Also, could you please share the steps which are you followed to modify the application once created from the Syncfusion ASP.NET MVC project template?

Regards,
Abishake Dakshinamoorthy


Attachment: SyncfusionMvcApplication31_1ea6f59c.zip

Loader.
Up arrow icon