I know Blazor is suppose to support IE 11 through some behind the scenes magic, what is the plan for Telerik for this?
We don't really care too much in our department as we are recommending all internal users to stop using IE and if the app doesn't work then the app doesn't work, use a modern browser.
However I am curious on if the plan will be there to support it as I do some things outside of our company that might be trickier to convince people to just not use IE on?
when can we expect to have a TreeView component like this https://www.syncfusion.com/blazor-components/blazor-treeview
Looks like syncfusion already have treeview and much more components for blazor.
Is there anything we need to make sure we are including when we upgrade to 1.3?
I go in the nuget and upgrade to 1.3 and try and do a button click which should open a window with a number of Telerik controls and I get an object reference error on the button click, window doesn't open.
Set it back to 1.2 error goes away and everything works just fine.
Hi,
Brilliant work on the Blazor components to date guys!
Any sign of a Menu Component yet though?
Thanks,
How does the new 100% grid height work? Does it take the height of it's container?
I removed the height styling from some of my pages, but the grid just keeps expanding and you have to use the browser scroll bar to access it. This is better than the fixed height, just trying to understand the new support.
Thanks,
Kenny
preview 6 breaks things pretty badly with Telerik components. So I uninstalled it and reinstalled preview 5, but now I am getting errors:
SeverityCodeDescriptionProjectFileLineSuppression State
ErrorThe type of component 'TelerikDropDownList' cannot be inferred based on the values provided. Consider specifying the type arguments directly using the following attributes: 'TItem', 'TValue'.ScheduledFeatureEditorC:\Code\ScheduledFeatureEditor\ScheduledFeatureEditor\Pages\ScheduledFeatures.razor145
Which is referring to this line of code:
<TelerikDropDownList Data="@ApplicationFeatureNames" TextField="Text" ValueField="Value" bind-Value="@applicationFeatureId">
So everywhere I have a line similar to this, I get the same error.
Also getting this error :
SeverityCodeDescriptionProjectFileLineSuppression State
ErrorThe type of component 'TelerikNumericTextBox' cannot be inferred based on the values provided. Consider specifying the type arguments directly using the following attributes: 'T'.ScheduledFeatureEditorC:\Code\ScheduledFeatureEditor\ScheduledFeatureEditor\Pages\ScheduledFeatures.razor191
This is on lines like this:
<TelerikNumericTextBox bind-Value=@ScheduledFeatureToEdit.CustomInterval></TelerikNumericTextBox>
Any ideas on how to get back to my working version of the project with preview 5?
Thanks,
Kenny
Hi
Will Ui for Blazor be part of DevCraft Complete?
Best
Giuseppe
Is it possible to add on click handlers to the chart data series and in the click event args get access to the data point that was clicked?
I'd like to be able to add some 'drill-down' functionality in order to display further more detailed info after the user clicks on a particular data point in the chart, e.g. a specific pie segment for bar/column etc?
We have a few people doing testing and have discovered that when using Chrome and using various ad blocking extensions that it causes the windows not to open.
Have you experienced this and have a work around?
Clicking a command button on my grid and running the code the handler contains causes all command buttons in that row to disappear. Refreshing the page makes them reappear.
Perhaps I am not using it correctly.
<TelerikGridCommandButton Command="Edit" OnClick="@OpenRequestEditWindow" Icon="edit">Edit</TelerikGridCommandButton>
<TelerikGridCommandButton Command="Delete" OnClick="@DeleteRequestItem" Icon="delete">Delete</TelerikGridCommandButton>
Clicking the "Edit" button opens a window with controls on it. User edits the values in the controls and has a save button
<TelerikButton Icon="save" OnClick="@UpdateRequest">Save Purchase Request</TelerikButton><br /><br />
This event simply writes to the database and then rebinds the grid data.
var grid = await service.GetRequests();
RequestAddGrid = grid.ToList();