|
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>BlazorApp1</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="https://cdn.syncfusion.com/blazor/18.2.44/styles/fabric.css" rel="stylesheet" />
<script src="https://cdn.syncfusion.com/blazor/18.3.35/syncfusion-blazor.min.js"></script> // refer this script
</head> |
Actually my problem was here:builder.Services.AddSyncfusionBlazor(true); If I put 'true', toolbar disappers. I removed 'true' and now I am getting toolsbar in Grid.Thanks
|
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>BlazorApp1</title>
<base rel='nofollow' rel='nofollow' href="~/" />
<link rel="stylesheet" rel='nofollow' rel='nofollow' href="css/bootstrap/bootstrap.min.css" />
<link rel='nofollow' rel='nofollow' href="css/site.css" rel="stylesheet" />
<link rel='nofollow' rel='nofollow' href="https://cdn.syncfusion.com/blazor/18.2.44/styles/fabric.css" rel="stylesheet" />
<script src="https://cdn.syncfusion.com/blazor/18.3.35/syncfusion-blazor.min.js"></script> // refer this script if you have enabled AddSyncfusionBlazor(true)
</head>
|
Thank you, I had the same issue and your fix worked for m