I am trying to use a Window component with Telerik buttons to allow the user to both make choices and to acknowledge.
If they need to make a choice, I want two buttons. If they need to acknowledge, I want one button.
But the properties of the button don't allow them to be changed programatically.
How to accomplish this?
I added a chart to my application and it runs locally. When I deploy it to Azure, nothing is displayed and an error is logged on the browser console.
Hi!
I'm new to Telerik and I'm working on a task to bypass SSL certificate in Chrome browser. I did some research and seem like this issue can be handled in IE but not easy for other browsers. One way we can do this is to use key strokes (i.e. "Tab" and "Enter"). The problem i'm facing is the NavigateTo("url") command throws an inner exception whenever I try to navigate to a Privacy Page. How do I solve this issue? Is there a way to manually enter url address into address bar without using the NavigateTo() function?
Hien
Dear Progress Team
We are using UI for ASP.NET Core and we want to migrate to UI for Blazor. However our project is already big and we can not migrate everything at once.
Is it possible to have UI for ASP.NET Core and UI for Blazor in the same c# project?
Something like that:
<myapp>/admin/ <-- legacy screens working with Core
<myapp>/newfeature/ <-- Blazor
if this is possible would you mind to setup up a very basic project that shows how this can be done?
that would be awesome.
Best
Giuseppe
Is the latest package available from a nuget feed anywhere?
I don't see it on any public feed, nor on the private nuget feed that was setup when I first installed. In the private feed, I only see v1.0
Am I missing something?
Has anyone else encountered issue using version 1.4.1 with preview8?
Trying to show a grid that worked correctly in 1.4.0 and preview7.
Hi
As UI for Blazor is short on components at the moment, is it ok to include Kendo UI for jQuery widgets in the same project? Am I likely to run into JS or CSS conflicts between the two frameworks?
Cheers
I have same problem with z-index when nodes must be go under top menu bar. But all nodes excluding root node go above on top menu bar.
This behavior changes from previous version of Telerik Blazor Components. I recorded video how changes behavior after update components to new version.
In old version also not all works correctly. I was must to change z-index to 1000 for my menu bar like this:
<div class="main">
<div class="top-row bg-light text-body px-4" id="navbar" style="z-index:1000;">
<div class="logo">
<BreadCrumb></BreadCrumb>
</div>
<div class="end-container">
<a class="nav-item nav-link" style="display:inline-block;" @onclick="@OnSignOutClicked">
<img src="../images/NavMenu/user.svg" width="32" height="32" />
</a>
@if (ServiceContext.User is SuperUserProxy)
{
<a class="nav-item nav-link" style="display:inline-block;" @onclick="@OnChangeCompanyClicked">
<img src="../images/NavMenu/company-building-company.svg" width="32" height="32" />
</a>
}
</div>
</div>
@if (ServiceContext.User is SuperUserProxy && ((SuperUserProxy)ServiceContext.User).SelectedCompany == null)
{
<CompanySelector CompanyWasSelected="@OnCompanyWasSelected"></CompanySelector>
}
else
{
<div class="content px-0">
@Body
</div>
}
</div>
But after change z-index to 1000 in older version of TreeView all works fine and I even forget about this. But new version quickly remembered about this strange behavior.
Link to my video: https://andriy.co/download/products/2019-07-29%2019-02-19.mp4