Pagination Button Style not working & Button function not working

Pagination Button Style not working & Button function not working

BruceeeeeeeeeeBruceeeeeeeeee Posts: 16Questions: 5Answers: 0

Hello,

Merry Christmas and Happy New Year!

I got these problems when I using Datatable:
1. The pagination button style now showing well;
2. Button function not working;

Link to test case: http://live.datatables.net/zezoluri/1/edit

I'm using Bootstrap 5 for styling and I also using jQuery functions as datepicker() so I also have reference link from jquery, but seems like there is some overriding problems with those links.

The code for jQuery functions are shown below:
**

@Html.LabelFor(model => model.Params.Start_DateFormatted, htmlAttributes: new { @class = "control-label col-md-4 required" })
@Html.EditorFor(model => model.Params.Start_DateFormatted, new { htmlAttributes = new { @class = "form-control", style = "font-size: 15px;", id = "StartDate" } }) @Html.ValidationMessageFor(model => model.Params.Start_DateFormatted, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.Params.End_DateFormatted, htmlAttributes: new { @class = "control-label col-md-4 required" })
@Html.EditorFor(model => model.Params.End_DateFormatted, new { htmlAttributes = new { @class = "form-control", style = "font-size: 15px;", id = "EndDate" } }) @Html.ValidationMessageFor(model => model.Params.End_DateFormatted, "", new { @class = "text-danger" })



**

This question has an accepted answers - jump to answer

Answers

Sign In or Register to comment.