Resource for Silkgrid;
https://www.codeproject.com/Articles/365223/Using-a-SlickGrid-within-an-ASP-NET-MVC-3-Applicat
Source, Ingest, Prepare, Analyze and Consume
All about application services for example, Azure App Service. Angular application, Microsoft .NET Core and EF
Very simple;
// Checks CSS content for display:[none|block], ignores visibility:[true|false]
$(element).is(":visible");
// The same works with hidden
$(element).is(":hidden");
Reference
https://stackoverflow.com/questions/178325/how-do-i-check-if-an-element-is-hidden-in-jquery
Let’s build a dismissible card without any custom JavaScript and only with Bootstrap CSS classes.
the combination of card-header
, the Bootstrap 4 Close Icon and negative margins (here .mt-n5
) on the card-body
. The close icon gets nicely positioned within the card-header and the negative margins pull the card content closer into the header area.
<div class="container">
<div id="closeablecard" class="card card-hover-shadow mt-4">
<div class="card-header bg-transparent border-bottom-0">
<button data-dismiss="alert" data-target="#closeablecard" type="button" class="close" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="card-body mt-n5">
<h5 class="card-title">Your Title</h5>
<p class="card-text">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatem recusandae voluptate porro suscipit numquam distinctio ut. Qui vitae, ut non inventore necessitatibus quae doloribus rerum, quaerat commodi, nemo perferendis ab.
</p>
<a href="#" class="card-link">Card link</a>
<a href="#" class="card-link">Another link</a>
</div>
</div>
</div>
To actually close the card we can make use of the BS4 Data-API and put the the following data attributes in the button tag: data-dismiss="alert" data-target="#closeablecard"
. data-target is the ID of our card and data-dismiss=alert triggers the actual close event in Bootstrap.
For BS5, make changes to data-* attributes. see below;
<button data-bs-dismiss="alert" data-bs-target="#closeablecard" type="button" class="close float-end" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
References
https://stackoverflow.com/questions/43970878/how-to-add-close-button-to-bootstrap-card
https://stackoverflow.com/questions/23873005/hide-div-by-default-and-show-it-on-click-with-bootstrap
Here is the list;
BASIS OF | BOOTSTRAP 4 | BOOTSTRAP 5 |
---|---|---|
Grid System | It has 5 tier (xs, sm, md, lg, xl). | It has 6 tier (xs, sm, md, lg, xl, xxl). |
Color | It has limited colors. | Extra colors added with the looks, A card improved color palette. there are various shades available to choose. |
Jquery | It has jquery and all related plugins. | Jquery is removed and switched to vanilla JS with some working plugins |
Internet Explorer | Bootstrap 4 supports both IE 10 and 11. | Bootstrap 5 doesn’t support IE 10 and 11. |
Form elements | Radio buttons, checkboxes have different look in different OS and browsers. The form uses whatever default browsers provide. | The look of form elements will not change, on different OS or browser. The forms can be customized and form controls can be added, they would not depend on browser. |
Utilities API | We cannot modify utilities in bootstrap 4 | Bootstrap 5 gave freedom to modify and also create our own utility |
Gutter | We use .glutter with fontsize in px | We use .g* with fontsize in rem |
Vertical Classes | Columns can be positioned relative | Columns cannot be positioned relative |
Bootstrap Icons | Bootstrap 4 doesn’t have its own SVG icons, we have to use font-awesome for icons. | Bootstrap 5 have its own SVG icons |
Jumbotron | It supports. | It doesn’t support jumbotron. |
Card deck | The card deck is used to create a set of cards with equal width and height. | Card deck class in removed in bootstrap |
Navbar | We have inline-block property and we will get white dropdown as default for dropdown-menu-dark class. | Inline-block property is removed and we will get black dropdown as default for dropdown-menu-dark class. |
Static Site Generator | Bootstrap 4 uses Jekyll software. | Bootstrap 5 uses Hugo software as it is fast static site generator. |
flexbox grid | this makes easier to implement vertical designs, and the columns and rows can easily be implemented. the classes justify-center-content can directly be used to align according to the requirement. | advanced grid system is made available , also columns don’t have relative positions. |
RTL Support | It does not enable RTL(Right to Left) switching. | It enables RTL(Right to Left) switching. |
Offcanvas Component | It does not support Offcanvas Component. | It supports Offcanvas Component(that is it is available now). |
Reference
This tutorial demonstrates how to start working with Telerik UI for ASP.NET Core. You will implement the Telerik UI DatePicker for ASP.NET Core in your project by using its dedicated HtmlHelper or TagHelper. In this guide, you will download and implement the components by using NuGet and Visual Studio 2022 for Windows.
The approach demonstrated in this guide is applicable both for new projects and for existing projects where you want to implement Telerik UI controls.
Click here to read about demonstrated approach for application configuration.
After configuration, Click here to read about getting started with Grid.
For applying different design pattern, click here.