My grid won't format properly. See below a snapshot of what it looks like, plus also the _Hosts.html head section.
Thanks,
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Job Costing</title>
<base rel='nofollow' href="~/" />
<link rel="stylesheet" rel='nofollow' href="css/bootstrap/bootstrap.min.css">
<link rel='nofollow' href="css/site.css" rel="stylesheet" />
<link rel='nofollow' href="JobCosting.styles.css" rel="stylesheet" />
@* <link rel='nofollow' href="_content/DevExpress.Blazor/dx-blazor.css" rel="stylesheet" />*@
<link rel='nofollow' href="_content/DevExpress.Blazor/dx-blazor.bs5.css" rel="stylesheet" />
<link rel='nofollow' href="_content/DevExpress.Blazor.RichEdit/dx-blazor-richedit.bs5.css" rel="stylesheet" />
<script src="_content/MatBlazor/dist/matBlazor.js"></script>
<link rel='nofollow' href="_content/MatBlazor/dist/matBlazor.css" rel="stylesheet" />
<link rel='nofollow' href="css/syncfusion-blazor-icons.css" rel="stylesheet" />
<link rel="stylesheet" rel='nofollow' href="_content/Syncfusion.Blazor.Themes/bootstrap5.css" />
@* <script src="_content/Syncfusion.Blazor.Core/scripts/syncfusion-blazor.min.js" type="text/javascript"></script>*@
<script>
function highlightFilteredCells(gridCssClass, filteredCellCssClass, filterValue) {
setTimeout(function () {
var grid = document.querySelector("." + gridCssClass);
var cells = grid.querySelectorAll("." + filteredCellCssClass);
for (var i = 0; i < cells.length; i++) {
var cell = cells[i];
cell.innerHTML = cell.innerHTML.replace(filterValue, "<span class='bg-warning'>" + filterValue + "</span>");
}
}, 250);
}
</script>
<script src="_content/BlazorInputFile/inputfile.js"></script>
</head>
|
<link rel='nofollow' href="_content/Syncfusion.Blazor.Themes/bootstrap5.css" rel="stylesheet" />
|