-1

I am working with an ASP.NET Core 8 MVC project. In my project I need to implement table and I have to use table from https://bootstrap-table.com/ but I can't add this package via Nuget.

In documentation I found only how to install it by npm or yarn. I cant find this package in Nuget Manager. I also tried to download file and add files manually to project but it doesn't work. Maybe I just add bad files or miss something. What is the best way to add this package to a .NET 8 project ?

1

1 Answer 1

1

According to your description, I suggest you could use add client library to achieve your requirement.

You could right click your solution and select add and select add client-side library.

enter image description here

Then inside the popup window ,search about the bootstrap-table and click install.

enter image description here

It will install it inside the wwwrooot's lib folder like below:

enter image description here

Then you could use it inside your view like below:

<script src="~/lib/bootstrap-table/bootstrap-table.js"></script>
<script src="~/lib/bootstrap-table/bootstrap-table.min.js"></script>
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.