Hi
I'm trying to apply the following Class , like this , but doesn't work.. gets override by the Telerik 'k' classes.
How can I apply custom Width / Height? thx
.TextBoxLarge {
width: 400px;
height: 50px;
}
<TelerikTextBox Class="TextBoxLarge" @bind-Value="@Notes"></TelerikTextBox>

when I am selecting the checkbox value and the another checkbox also selected. Please see attached file
<TelerikListView Data="@editModel.Groups" Height="200px">
<Template Context="dlcontext">
<div class="row" style="margin-left:0px; margin-right:0px;">
<div class="col-12 mt-sm" style="margin-top: 3px; margin-bottom: 3px;">
<label for="@dlcontext.Name">
<TelerikCheckBox @bind-Value="@editModel.IsSelected" Id="@dlcontext.Name" Enabled="true" />
@dlcontext.Name
</label>
</div>
</div>
</Template>
</TelerikListView>
Thanks,
Vishnu Vardhanan
As the title states, when a user presses enter in a textbox, how could I trigger the key down event for tab?
Will this be a jsinvoke?
Downloaded source from Git.
Was trying to run BlazingCoffee server version, got an error message for references:
1>------ Build started: Project: BlazingCoffee.Shared, Configuration: Debug Any CPU ------
Error occurred while restoring NuGet packages: Failed to retrieve information about 'Telerik.UI.for.Blazor.Trial' from remote source 'https://hexagonppm.pkgs.visualstudio.com/_packaging/d52ddb6c-0f38-494a-97a1-3133ffb82c9c/nuget/v3/flat2/telerik.ui.for.blazor.trial/index.json'.
all referenced in project market with yellow triangle.
VS 2019 v 16.8.4
What could be missing?
class AppRegistration{ public DateTime DateCreated { get; set; } public List<RoleRequest> RolesRequested { get; set; } public string Approver { get; set; } public string Status { get; set; } public string Description { get; set; } public int Id { get; set; }}enum Role{ MFAAdmin, ListServerAdmin, SecretServerAdmin, IdentityAdmin}class RoleRequest{ public Role Role { get; set; } public bool Requested { get; set; }}
Here is my markup:
<div class="col"> @{ _newAppReg = new AppRegistration(); _newAppReg.RolesRequested = new List<RoleRequest>(); foreach (var role in Enum.GetValues(typeof(Role))) { _newAppReg.RolesRequested.Add(new RoleRequest { Role = (Role)role }); } foreach (var r in _newAppReg.RolesRequested) { <div class="mt-sm"> <TelerikCheckBox @bind-Value="@r.Requested" Enabled="@true" Id="@r.Role.ToString()"> </TelerikCheckBox> <label for="@r.Role.ToString()">@r.Role.ToString()</label> </div> } }</div>When we updated our packages to 2.21.0, it broke the Editor. I can no longer click inside the editor and type anything. When clicking the button to view the HTML it crashes. I reverted back to 2.20.0 where it works. No codes changes were made on our side.
HTML:
<TelerikEditor Class="mh-500" Height="@Height" @ref="editor" @bind-Value="Content" Tools="@EditorToolSets.All"></TelerikEditor>
Properties:
[Parameter] public string Content { get; set; }
[Parameter] public string Height { get; set; } = "auto";
private TelerikEditor editor { get; set; }
Hi,
in Kendo UI asp.net core / Javascript I set the possible Page Sizes:
pageable: { pageSizes: [2, 3, 4, "all"],
see https://docs.telerik.com/kendo-ui/api/javascript/ui/grid/configuration/pageable.pagesizes
For a new Blazor ServerSide App my client wish also such dropdownlist.
In https://docs.telerik.com/blazor-ui/components/grid/paging I can set the PageSize, but not an Array PageSizes for a dropdownlist in the Pager.
How can I add an PageSizes-DropDownlist right of the Button "Go to the last page" in the grid-pager Toolbar?
Regards,
Peter