Telerik Forums
UI for Blazor Forum
1 answer
1.2K+ views
It is possible to hide AnimationContainer on click outside of it?
Marin Bratanov
Telerik team
 answered on 29 Jan 2021
0 answers
376 views

Hello Teams

When I clicking the GridCommandButton the text should be change to remove and I have attached the Image with explanation.

                        <TelerikGrid Data=@users
                                     Groupable="false" Sortable="true"
                                     FilterMode="GridFilterMode.FilterMenu" Resizable="true"
                                     Reorderable="true" PageSize=@GridConstants.PageSize Pageable=@GridConstants.Pageable Class="ecm-grid">
                            <GridColumns>
                                <GridColumn Field="@nameof(ManageUsrAndGrp.User.Name)" Title="User Name" />
                                <GridColumn Field="@nameof(ManageUsrAndGrp.User.FullName)" Title="Full Name"></GridColumn>
                                <GridCommandColumn Resizable="false">
                                    <GridCommandButton Command="Edit" OnClick="@AddUser">Add</GridCommandButton>
                                </GridCommandColumn>
                            </GridColumns>
                        </TelerikGrid>
Thanks,

Vishnu Vardhanan

 

Vishnu
Top achievements
Rank 1
Iron
Veteran
 asked on 29 Jan 2021
6 answers
2.3K+ views

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>

Nadezhda Tacheva
Telerik team
 answered on 28 Jan 2021
1 answer
172 views
Using moblie Safari iOS or Chrome Android.
Goto demo page
https://demos.telerik.com/blazor-ui/tilelayout/overview
Try to change tile's order or size.
Nothings happened.
Marin Bratanov
Telerik team
 answered on 28 Jan 2021
1 answer
223 views
Using mobile browser (Safari iOS or Chrome Android)
Go to demo grid page
https://demos.telerik.com/blazor-ui/grid/overview
Click any grid's filter menu which contains text field
Try to enter text into textbox.
The filter menu automatically closed, so you can't enter anything
Marin Bratanov
Telerik team
 answered on 28 Jan 2021
2 answers
1.0K+ views

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

 

Vishnu
Top achievements
Rank 1
Iron
Veteran
 answered on 28 Jan 2021
2 answers
7.1K+ views

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?

Rick
Top achievements
Rank 1
Veteran
 answered on 27 Jan 2021
3 answers
898 views
Is there an option to have a horizontal scroll while not wrapping the text for a single column? 
Cee
Top achievements
Rank 1
 answered on 27 Jan 2021
1 answer
277 views

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?

Marin Bratanov
Telerik team
 answered on 27 Jan 2021
2 answers
391 views
I am having an issue with my checkboxes unchecking as soon as I check them.
Here is my model:
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>
David
Top achievements
Rank 3
Iron
Iron
Veteran
 answered on 26 Jan 2021
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?