Hi,
When I try to run the example on the following page I get an error:
Page: https://docs.telerik.com/blazor-ui/components/form/formitems/overview#customize-the-appearance-of-the-editors-in-the-form
Error: Unhandled exception rendering component: Object of type 'Telerik.Blazor.Components.FormItem' does not have a property matching the name 'Enabled'.
Additionally, the example that uses the "[Editable(false)]" attribute on the model attached to the form does not render the control in a disabled state, as stated. (Example on this page: https://docs.telerik.com/blazor-ui/components/form/overview )
Any help would be appreciated. Thank you,
Jesse
Is there a way to put an entire page and it's associated code-behind file as part of a tabstriptab content? I'm having a problem styling the entire "page" since it has a component containing a tab strip and it always ends up on the left side of the page and the content ends up on the right side of the page. The best thing would be to put the content in the tab content itself but i don't want to put all that html and code into one file that contains the tabstriptab.
Thanks,
Lawrence.
Hi
The idea we have is to have a list of tileLayoutitems. The user starts with an empty TileLayout and starts a wizard, the wizard lets the user choose from a list which tilelayoutitems he or she wants to see. We save this information in our database. So then, we need code to populate the tilelayout with the choosen tilelayout items.
Qeustion is this possible to do and how?
Eric
Hello, we are trying to create a type of dashboard where the user would be able to customise the dashboard by removing and adding tiles.
It seems like the add/remove feature is already implemented in Kendo UI for JQuery but not for Blazor, is there already an expected date for this feature to be implemented in Blazor?
I am trying to do a custom filter as FilterMenuTemplate in a Grid.
Filtering works fine. When I attempt to "unfilter", I get lost in how to detect and handle it.
I have two different styles of handing the filtering in the below, yet neither can I get to work.
How do I have FilterMenuTemplate with a dropdown (custom) and detect the user clicking the "Clear" button?
<TelerikGrid Data="@_vehicleParts"
Pageable="true"
Sortable="true"
FilterMode="Telerik.Blazor.GridFilterMode.FilterMenu"
Resizable="true"
Reorderable="true"
PageSize="20"
Navigable="true"
OnRead=@OnVehiclePartsRead
TotalCount="@TotalCount">
<GridColumns>
<GridColumn Width="10%" Field="@nameof(VehiclePartModel.YearId)">
</GridColumn>
<GridColumn Width="10%" Field="@nameof(VehiclePartModel.BrandModelName)">
<FilterMenuTemplate Context="brandModelNameFilterContext">
<TelerikDropDownList Data="@_brandModels" TextField="@nameof(BrandModel.Name)" ValueField="@nameof(BrandModel.Id)" @bind-Value="@BrandModelIdFilter" />
</FilterMenuTemplate>
</GridColumn>
<GridColumn Width="10%" Field="@nameof(VehiclePartModel.MakeName)">
<FilterMenuTemplate Context="makeNameFilterContext">
@{ this._makeNameFilterContext = makeNameFilterContext;}
<TelerikDropDownList Data="@_makes" TextField="@nameof(Make.Name)" Value="@MakeIdFilter" ValueField="@nameof(Make.Id)" ValueChanged="@((int value) => ColumnValueChanged(value, nameof(VehiclePartModel.MakeName), makeNameFilterContext.FilterDescriptor))"/>
</FilterMenuTemplate>
</GridColumn>
Hello,
Is there a way to refresh all Charts in a TileLayout without doing it on every Chart?
My TileLayout is created dynamically, and I can have 1 or many Charts in it, but I want to refresh all of them on resize.
I have a method that triggers when a user presses some key combinations, and then every Chart should do .refresh().
Thanks
BR,
Nikolas
I am attempting to use a drawer component to slide in from the right and present the user with a form to edit various items from a grid.
Is there a way to display content (form, text, etc) in a drawer other than menu-type items?
Thanks,
Jesse