Telerik Forums
UI for Blazor Forum
1 answer
299 views

During veracode source clear scan on a project that has telerik package(3.7.0), the following error is seen.

Security
With Vulnerable Methods                        0
Critical Risk Vulnerabilities                  0
High Risk Vulnerabilities                      4
Medium Risk Vulnerabilities                    3
Low Risk Vulnerabilities                       0
 
Vulnerabilities - Public Data
CVE-2019-0981                                  High Risk         Denial Of Service (DoS)         System.Private.Uri 4.3.0
CVE-2019-0980                                  High Risk         Denial Of Service (DoS)         System.Private.Uri 4.3.0
CVE-2019-0820                                  High Risk         Denial Of Service (DoS)         System.Text.RegularExpressions 4.3.0
CVE-2020-1147                                  High Risk         Remote Code Execution (RCE)     System.Data.Common 4.3.0
CVE-2019-0657                                  Medium Risk       Authorization Bypass            runtime.unix.System.Private.Uri 4.3.0
CVE-2019-0657                                  Medium Risk       Authorization Bypass            System.Private.Uri 4.3.0
CVE-2019-0657                                  Medium Risk       Authorization Bypass            runtime.win7.System.Private.Uri 4.3.0

Dimo
Telerik team
 answered on 12 Sep 2023
1 answer
138 views
Why are the slider buttons of type 'submit' and how do I change them not to be?
Hristian Stefanov
Telerik team
 answered on 08 Sep 2023
1 answer
153 views

Hi there.
Using the Grid component, setting "Navigable" to "true" and having a DropDownList makes the popup of the component not appear after the user has clicked on the input box.

The DropDownList has a button (with an arrow pointing down) on its right side. Clicking on the button makes the popup appear. The popup also appears if the user clicks on the input box of the component, but this last scenario does not happen if the component is inside a Grid which has "Navigable" set to "true". In this state, the button mentioned also makes the popup not appear.

Here is a gif which showcases this behaviour: https://i.gyazo.com/a071f9fba72d08261d438e31b240d606.mp4
This also affects the ComboBox component: https://i.gyazo.com/bcf2f10a6a6c923d825865ecdf0a7f5a.mp4

Here is the REPL link: https://blazorrepl.telerik.com/mnkDOScb41h1aOK602

Dimo
Telerik team
 answered on 07 Sep 2023
5 answers
4.9K+ views

Hi,

I am trying to do something simple but having trouble.

All I want is a grid that displays columns for a name and an IsActive property. 

I tried using:

<GridCheckboxColumn Field="@(nameof(AppRole.IsActive))" Title="Is Active"/>

but got nowhere with it.

The basic code is show below. How can I center the checkbox in the column and make not editable unless the are in edit mode?

Also, I want the checkboxes centered in the column.

Any help would be great.

 

Thanks … Ed

 

         <TelerikGrid Data=@GridData
                       Pageable="true" Groupable="true" Sortable="true"
                       OnUpdate="@UpdateHandler" OnDelete="@DeleteHandler" OnCreate="@CreateHandler" OnEdit="@EditHandler">
              <GridColumns>
 
                  <GridColumn Field="Name" />
                  <GridColumn Field="@(nameof(AppRole.IsActive))" Title="Is Active">
                      <Template Context="ctx">
                          @{
                              var r = ctx as AppRole;
                              var chk = r.IsActive ? "checked" : "";
                               <input type="checkbox" checked="@chk" />
                           }
                      </Template>
                  </GridColumn>
                  <GridCommandColumn Width="300px">
                      <GridCommandButton Command="Save" Icon="save" ShowInEdit="true">Update</GridCommandButton>
                      <GridCommandButton Command="Edit" Icon="edit">Edit</GridCommandButton>
                      <GridCommandButton Command="Delete" Icon="delete">Delete</GridCommandButton>
                      <GridCommandButton Command="Cancel" Icon="cancel" ShowInEdit="true">Cancel</GridCommandButton>
                  </GridCommandColumn>
              </GridColumns>
              <GridToolBar>
                  <GridCommandButton Command="Add" Icon="add">Create Role</GridCommandButton>
              </GridToolBar>
          </TelerikGrid>
Leland
Top achievements
Rank 2
Iron
Iron
Iron
 answered on 06 Sep 2023
1 answer
305 views

Hi, 

I would like to stop the incrementing of my NumericTextBox when I use the keyboard arrows. I use preventDefault, but it doesn't work.

<div @onkeydown:preventDefault="true">
     <TelerikNumericTextBox Id="test" Width="95%" Decimals="2" Format="C2" @bind-Value="@Test" Arrows="false"> 
     </TelerikNumericTextBox>
</div>

Can anyone help me?

Thanks!

Zachary
Top achievements
Rank 1
Iron
 updated answer on 06 Sep 2023
1 answer
182 views

In GridPagerSettings we can configure if show pages as Button OR with an input box.  

In Angular version of Telerik UI il allowed to show pages as Button AND with an input box.

Who to allow this in Blazor UI?

 

Thanks

Hristian Stefanov
Telerik team
 answered on 06 Sep 2023
0 answers
114 views

Hello forum, does anyone know how can I get the position of GridExcelExportColumn? I need to insert a few Hidden Columns in a specific place on grid's OnAfterExport Event is this the way to go?

 

GridExcelExportColumn afterThisColumnIWantToInsertHiddenColumns = args.Columns.Find(x => x.Field == nameof(Model.Property));

var index = args.Columns.IndexOf(afterThisColumnIWantToInsertHiddenColumns) args.Columns.InsertRange(index , hiddenColumns);


Israel
Top achievements
Rank 1
 updated question on 05 Sep 2023
1 answer
147 views

Cannot type in date into TelerikDateInput if AllowCaretMode is true and the DateInput focus is in the whole input,

how to reproduce:

move focus to DateInput from previous input (whole dateInput is in focus)

Type in 01 into the DateInput, the caret will move to end, but no value filled.

 

This is the REPL page:

https://blazorrepl.telerik.com/GnYsHlcv54uXw7hd34

this is the form and how to reproduce:

Svetoslav Dimitrov
Telerik team
 answered on 05 Sep 2023
1 answer
125 views

I know about the awesome ThemeBuilder but sometime all you need is to change the accent color and some other global properties.

Thats way I ask if you are going to support CSS Vars for styling.

Bootstrap · The most popular HTML, CSS, and JS library in the world. (getbootstrap.com)

Dimo
Telerik team
 answered on 05 Sep 2023
1 answer
224 views
Hello. I would like to show a tooltip on a DropDownButtonItem, I tried but without success. This is the Repl link. May you kindly help me? Thank you.
Hristian Stefanov
Telerik team
 answered on 05 Sep 2023
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?