In my project, the turn has finally come to the implementation of the Gantt diagram.
I looked with envy at the component from Syncfusion, but stubbornly did not allow myself to combine components from different developers, I try to be loyal only to Telerik.
The long-awaited release of the component and - a huge disappointment!
Guys, this is not a product that you are not ashamed to release for release.
It's more like "make them at least something to be."
Where are the templates for rows, headings? What is this totally inappropriate editing? What the hell is a double click to edit? Where is the managed expand \ collapse? Where is the state management? Where is the slider position management? Do you think it's okay to leave so much blank space where there are no tasks in the "year" view? Specifying the "RangeStart" property for the GanttYearView does not affect the display in any way - all the months of the year will still be displayed.
You didn't even bother to include a description of properties for localization!
Take the Syncfusion component as a reference and do it with all your heart as you can, like your Grid. So far - a complete failure.
Hello, Excuse the bad English
There is a telerik grid on the razor page. I want to reload the telerik grid whenever the parameter value changes that has changed the this razor file.
I tried reloading sourcedata using OnParametersSetAsync() method, but I didn't reload ReadItems() which is running on OnRead event.
How do I reload the Read Items() method?
I am calling the razor component in TabStrip. If the value of the parameter changes, I want to reload the razor component with that value.
As of now, the razor component is called only when the div is empty, that is, when the razor component is not called, and in other situations, it is not reloaded.
I want to call the razor component using the changed data through an event. In other words, it is hoped that the contents of the razor component have changed immediately.
What should I do?
When adding the Telerik theme to my existing dotnet 6 Blazor Server app, should I remove the .css files that come with that template? Here is what my HEAD looks like right now.
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<base href="~/" />
<!--CSS-->
<link rel="stylesheet" href="css/bootstrap/bootstrap.min.css" />
<link href="css/site.css" rel="stylesheet" />
<link href="Portal.styles.css" rel="stylesheet" />
<link rel="stylesheet" href="_content/Telerik.UI.for.Blazor/css/kendo-theme-default/all.css" />
<!--JS-->
<script src="_content/Telerik.UI.for.Blazor/js/telerik-blazor.js" defer></script>
<component type="typeof(HeadOutlet)" render-mode="ServerPrerendered" />
</head>
Hello,
i would like to use this Framewok, but i encountered following roadblock in conjunction with the DI-Framework i am using (SimpleInjector).
As the Input-Components fire NotifyFieldChanged on every keystroke and do not use the "normal" way (onEvent -> triggering the IHandleEvent-Interface) of eventpropagation the DI Container can not apply the correct ServiceScope and thus fails to inject the correct services from Blazor. (NavigationManager, AuthenticationStateProvider)
If i use OnChange it might work, if this was the only event, which was fired. (Which is not, because still NotifyFieldChanged fires)
Please consider to suppress firing NotifyFieldChanged when OnChange is implemented explicitly.
Or perhaps use a property "HandleValidationOn" = "ValidationTrigger.OnBlur/LostFocus | ValidationTrigger.OnInput | ValidationTrigger.Never"
I would take "Never", as i am validating everything in a backend-service which has no knowledge of the UI for better seperation of concerns.
Hi,
I would like to have support for @mentions in your editor, maybe it's already there?
Any other way i could get this?
Thanks
After selecting a date from the calendar control, control goes to the field with the date value but doesn't fire the OnChanged event until after an action draws focus away. Is there a event that I can hook into at this state (after the selection and before the OnChanged event)? I need update the page when the visible date in the field is different and OnChanged is firing too late because of this preview.
I've looked into using ValueChanged but haven't been able to pre-set the value.
Hello, Excuse the bad English
There is telerikgrid, and when I click Row on that grid, I load the razor page in tabstriptab with grid data as a parameter.
I want the contents of the razor page to change based on the parameter value that changed when I clicked row on the grid.
Currently, the parameter value changes, but the razor page does not reload.
What Should I do?
Here is the detail code:
<TelerikTabStrip @bind-ActiveTabIndex="@ActiveTabIndex">
<TabStripTab Title="Drawing">
<Drawing DCT_NO="@DctNo" ENV_NO="@PartNo" ENV_TYPE="@EnvType" ENV="@ENV" COID="@COID"></Drawing>
</TabStripTab>
<TabStripTab Title="Cad">
<Cad DCT_NO="@DctNo" ENV_NO="@PartNo" ENV_TYPE="@EnvType" ENV="@ENV" COID="@COID"></Cad>
</TabStripTab>
</TelerikTabStrip>
Thank you.