Hello!
Have a problem:
I can's set ChartSeriesStyle.Step for ScatterLine chart
Here is sample (taken from your public sample)
<ChartSeries Type="ChartSeriesType.ScatterLine"
Style="ChartSeriesStyle.Step"
Data="@Series1Data"
Name="0.8C"
XField="@nameof(ModelData.X)"
YField="@nameof(ModelData.Y)">
</ChartSeries>
But chart ingore Step style and rendering as normal style
Also, i can't set width for series line.
Trying like:
<ChartSeries Type="ChartSeriesType.ScatterLine"
Style="ChartSeriesStyle.Step"
Data="@Series1Data"
Name="0.8C"
XField="@nameof(ModelData.X)"
YField="@nameof(ModelData.Y)">
<ChartSeriesLine Width="20" />
</ChartSeries>
I am using Editor on Visual studio works fine, but after publish and release to production, the page contains Editor crashed. The application is server side Blazor
developer tools shows:
2020-09-18T20:12:10.617Z] Error: There was an unhandled exception on the current circuit, so this circuit will be terminated. For more details turn on detailed exceptions by setting 'DetailedErrors: true' in 'appSettings.Development.json' or set 'CircuitOptions.DetailedErrors'.
e.log @ blazor.server.js:15
Hi,
I am currently trying to use a dynamic editable in my grid but it doesn't work although I followed the directions in this post: https://docs.telerik.com/blazor-ui/knowledge-base/grid-change-editable-attribute-update-create
<GridColumn Field="@(nameof(Menge))" Title="Menge" Width="100px" Editable="@(Current?.PositionsTyp != PositionsTyp.Hierarchiestufe)">
<EditorTemplate>
@{
Current = context as Item;
<div>@Current.Menge</div>
}
</EditorTemplate>
</GridColumn>
Should it work for InCell editing and virtual scrolling mode too?
Thanks in advance!
I am trying to use your example here: Forum Post
I am rendering a dynamic list of Tabs but can't seem to programmatically select another Tab with the ActiveTabIndexChanged. The code in your example needs to be updated. Can you update us on doing this with both a dynamic Tab list + an ActiveTabIndex set ? Thank you.
I am coming from the Kendo Editor and in that editor I had the ability to paste an image into the editor and it would add it to markup as a base64 string.
It does not appear that the Blazor editor is allowing this as nothing happens when I try to paste an image into it.
I don't want to use the "insert image" button in the editor as I don't want the user to have to save the image somewhere and "link it".
We want our users to be able to take a screen shot of something and just paste it into the editor.
Is there any way this can be accomplished?
Hello, I know the documentation says that grid templates will be ignored on Excel export but I'm wondering if there's any way around that. I have columns that are integers which represent strings (like from a type table on the database) so I have templates set up on those columns to display the strings represented by the integers but of course when I export to Excel it exports the integers which are meaningless to an end user. Maybe there's a way to get access to the context in the Field property or something? Otherwise I'll have to modify my classes to include the strings as well which isn't the end of the world but figured I'd check with you first.
Thanks.
Hi, I've been using the Kendo Scheduler for Blazor and have been following the examples from this doc: https://docs.telerik.com/blazor-ui/components/scheduler/resources#one-resource
However, the only examples for adding addition SchedulerResources are dropdownlists. Is there any way to add a Resource that's a textbox or any other input type? If I leave the Data attribute blank, an error is thrown.
Thanks
I'm wondering if R3 2020 is the same as release 2.17 for Telerik UI for Blazor? I received an email about "R3 2020" with a link to the download page and I only see release 2.17 which appears to be the same day. Are they the same?
Thanks
MM
Where can I get a hold of these files?
Looks like all the CSS for this demom in there, would be good of these were in a tab at the top like the old ajax demos used to be
Hello community!
Is there a way to format the DateTime value of our model without using templates?
Thanks in advance for any tip!
<
GridColumn
Field=@nameof(WillyMachine.DateDebut)
Title
=
"Debut"
Filterable
=
"true"
Editable
=
"false"
Width
=
"100px"
/>