209 comments found.
is there a way to create a link logout to post method to logout action?
Hi Jcguimaraes,
You may create a link with jQuery submit event to post method logout action. e.g Logout
<script> $(document).on(‘click’, ‘[data-toggle=”logout”]’, function(e) { e.preventDefault(); $(‘form[name=”logout_form”]’).submit(); }); </script>
<form action=”/Logout” method=”POST” name=”logout_form”> <input type=”hidden” name=”your-field-name” /> </form>
Best Regards, Sean.
Hi im having a hard time running npm install, its failing.
npm ERR! gyp ERR! node -v v16.3.0 npm ERR! gyp ERR! node-gyp -v v3.8.0 npm ERR! gyp ERR! not ok npm ERR! Build failed with error code: 1
Hi Dinhho916,
Please do not use the latest version of Node JS, v16+ which is not stable yet. You might need to install the latest stable version v14+
Best Regards, Sean.
Do we have any updates coming soon with regards to bootstrap / dot net new versions?
Hi Pineapplegroup,
Yeah, you are right. New version of Bootstrap and dotnet will be included in next version release.
Best Regards, Sean.
Can you please share the details about the Fonts used in this template are available along this template or it need to be procure separately.
Hi Sameer135,
The font used in this template is the system default browser fonts.
Best Regards, Sean.
i saw menu is using these fonts, i know these are fallback font sequence. what we are seeing in the preview is not a default browser font right. SFMono-Regular,Menlo,Monaco,Consolas,”Liberation Mono”,”Courier New”,monospace
Hi Sameer135,
Nope. This is the default font family used by bootstrap. You can inspect element and check that.
system-ui,-apple-system,”Segoe UI”,Roboto,”Helvetica Neue”,Arial,”Noto Sans”,”Liberation Sans”,sans-serif,”Apple Color Emoji”,”Segoe UI Emoji”,”Segoe UI Symbol”,”Noto Color Emoji”
Best Regards, Sean.
Is the dark version available?
Hi Nsantec,
Dark version is not available yet.
Best Regards, Sean.
But, are you working on it_….can I pay extra you for it. Im working on a project using this Theme (need to say is great)...and we need to deploy it on two months.
Hi Nsantec,
Unfortunately, i’m not available for any customisation.
Best Regards, Sean.
Hi Sir Any plan for supporting RTL? Is it supporting Multi-language? Can we use Angular to be integrated with your solution?
Hi Sehmawy,
Unfortunately, AspStudio do not support RTL at this moment.
As long as you include the required css, there should be no problem to integrate into Angular JS BUT you might need to convert the element like header, sidebar into component for Angular syntax.
Best Regards, Sean.
Hello,
Great template, just getting to grips with it. I am confused, the title indicates Bootstrap 5, but the template download is Bootstrap 4.3.1. Is this correct ?
Kind Regards Tim Masling
Hi Tjmasling,
The latest version of AspStudio (v2.0) comes with Bootstrap 5.0.0-beta2. If you are downloading the older version of AspStudio, kindly login to your themeforest account and re-download the files again.
p.s all the plugins version can be check via package.json. You may upgrade the bootstrap version by running npm install bootstrap as well.
Best Regards, Sean.
Good day.
Kindly advise how to keep the menu items in the sidebar always expanded. They collapse when loading menu item pages
Hi Indrandydx,
You just need to add the active class to the div.menu-item
Best Regards, Sean.
Have you comment abouts use the Template with ASP.NET Core 5 ? or a new version using Core 5 ?
Hi Creativaint,
As long as you include the required css / js files, there should be problem to integrate this template into ASP.NET Core 5.
Best Regards, Sean.
Good day,
Please can you advise how to upgrade from your previous release of 1.3.0 to current 2.0.0
I have so far copied the lib folder into my project as well as the package.json.
However, I get the following: Severity Code Description Project File Line Suppression State Warning Validation (CSS 4.0): “-webkit-text-decoration” is not a known CSS property name. ShippingHub \wwwroot\lib\bootstrap\dist\css\bootstrap.css 89
There are 59 of these warning – all very similar
and secondly,
When I implement the accordian, the display is incorrect and does not work
Your help is appreciated. Regards
Hi Indrandydx,
My suggestion is open a new project with 2.0.0 and copy over the controller / html view file for your current project. This is because 2.0.0 do implement the asp identity and upgrade from Bootstrap 4 to Bootstrap 5.
For accordion, you might need to take a look for the new syntax in Bootstrap 5.0. https://getbootstrap.com/docs/5.0/components/accordion/Best Regards, Sean.
i wants to use this template for my web site
Hi Sajjad316,
You may do so.
Best Regards, Sean.
Hi, Great work on the template. Do you have by any chance Figma files that we can use for prototyping? Or any similar workflow that you recommend for creating the design mockups for the dev team?
Many thanks
Hi Gur,
Thank you for your comment and feedback. Unfortunately i do not have any figma files / photoshop for prototyping. My suggestion is change the variable value from scss files which will directly change the color / margin / sizing for the template layout.
Best Regards, Sean.
it has horizontal menu ?
Hi Sonekavin,
You may use the bootstrap navigation ad horizontal menu.
Best Regards, Sean.
Hi,
I purchased AspStudio, May I know on how can I configure the web.config?
regards,
Hi Alecx0122,
By default the app doesn’t comes with web.config file. You might need to add the web.config file yourself in order to configure the settings within IIS & your asp application.
Best Regards, Sean.
Hello
there is an issue I faced it is a minor issue but again, on side bar menu when you made a link dynamically active or ” ” from the controller on json document when the controller are the same there is a problem with menu- active I tried to change it to action because action names are generally different but nothing happens I managed somehow but maybe it is better to fix that also on sidebar menu.
Hi Partluka,
So far if you follow the json format in sidebar.json, it should be no problem to make the sidebar menu active.
Best Regards, Sean.
Hello
Thanks for the fast reply. Maybe I explained not good the problem is not with menu-active the issue is when I wrote in sidebar json in a example menu: [ “text”: “exampleMenu”, “is_header”: true }, { “controller”: “User”, “action”: “something”, “icon”: “fa fa-home”, “text”: “Home” }, { “controller”: “User”, “action”: “something2”, “icon”: “fa fa-chart-bar”, “text”: “Users” }, ]
Because of the controller names are same when I click one of them on UI they are both getting active.
Hi Partluka,
For that case, you might need to have another third key / field to indicate that route belongs to another one. This is because normally won’t share the same controller between each other.
Best Regards, Sean.
Hello Sean,
I wanto to add a background image to the login.cshtml from ASP-Identity. I can see u posted several suggestions. Neither of them seems to work for me.
- ”/wwwroot/css/style.css” has no effect
- ”/src/scss/pages/_login.scss” & then runnin gulp has no effect
Regards Pierre
Hi Pierre,
Have you run the npm install command before running gulp command?
If you wish to add style.css, you might need to include it in your page head as well. (/Views/Shared/_Layout.cshtml) OR include it within the page @section Styles { <link href=”~/css/style.css” rel=”stylesheet” /> }
Best Regards, Sean.
Thanks for your response. Yes, npm install was used and I can see the file also gets updated (app.min.css).
using: @section Styles { <style type=”text/css”> .login { background-color: black; } </style> } in Areas/Identity/Pages/Account/Login.cshtml will not will not affect anything :/ even with ”!important”
Regards Pierre
Nvm. At some reason I have to open “app.min.css” after using “gulp” before the changes affects my page.
regarding @section Styles I changed the ” in “text/css”. I didnt notice the one ” that was used was another one than “
Hi PieKnu,
I have tried the gulp and section css style implementation and it is working fine on my side. You might need to double check whether you have customise any file / scss that cause the css doesn’t affect the changes.
Best Regards, Sean.
Hello,
I have a question about the regular license which I purchased for your theme. Is it allowed to use this template for an intranet application? The Web App would be installed on three different servers but would be only accessible over the intranet. It is also not commercial. I’m just not sure because the description of the Regular License said that it is not possible to use it on multiple clients.
Best Regards Jonas
Hi Jonas,
What i understand for regular license will be “one license for one domain”. If you have three domain, you might need three regular license for your web application.
Best Regards, Sean.
Starting with version 2.0 the select dropdown used system (for android and IOS) and IOS made small zoom in when you click on select but after close the zoom in still present, how we can fix this? To do not use system select drop-down but the design one
Hi Alexmurug,
You may try to add the viewport setting maximum-scale=1 in order to solve the issue.
https://stackoverflow.com/questions/2989263/disable-auto-zoom-in-input-text-tag-safari-on-iphoneBest Regards, Sean.
Hi, how can I add Razor Page as menu. I tried but active menu color not changing.
Hi Imabduldev,
You might need to customize the /Shared/Sidebar.cshtml in order to meet your needs.
e.g add the check condition for handler / page for razor routing
Best Regards, Sean.
Thanks for the reply, I have configured it for razor pages. Now it’s working fine but when I open the sub menu sub menu page open that’s good but the menu also collapsed.
You might need to has the has-sub css class in the parent menu-item element.
e.g ... ...p.s you might need to detect the route so that you can append the active class to the menu item when route match with the menu route
Best Regards, Sean.
How do you change the database from the default sqlite app.db to a SQL server?
Hi Mazinhio,
You may refer to their official documentation for how to setup the sql server in asp.net https://docs.microsoft.com/en-us/aspnet/core/tutorials/razor-pages/sql?view=aspnetcore-3.1&tabs=visual-studioBest Regards, Sean.