Telerik Forums
UI for Blazor Forum
1 answer
260 views

#app { height: 100vh; /* grid container settings */ display: grid; grid-template-columns: 1fr; grid-template-rows: auto 1fr auto; grid-template-areas: 'header' 'main' 'footer'; }

Can I use named areas and fractions?

 

Marin Bratanov
Telerik team
 answered on 06 Sep 2021
1 answer
287 views
it would be great to have ability by having some method 
Marin Bratanov
Telerik team
 answered on 06 Sep 2021
1 answer
587 views

Hi,

I am trying to implement a custom CSV export for a Telerik Blazor Grid.  I want to be able to build up my CSV file manually so can't use the out of the box exporting solutions that the grids currently have.

I want to be able to generate the CSV header row and I want to be able to use the column header titles as they are displayed to the user.

This information doesn't appear to be exposed in the grid API.

I have found this article:

https://docs.telerik.com/blazor-ui/components/grid/state?_ga=2.72679824.2042974694.1630916775-1170839967.1533657392#get-current-columns-visibility-order-field

which shows that you can get a list of current column states but it doesn't look like you can get the properties of the column e.g. fieldName, columnHeaderTitle etc.

The linked article seems to suggest that:

This example also shows a workaround for getting the Field of the column that will be availale in a future release as part of the column state

 

Are there any updates on what release this will be available in and whether it will include more column properties like Title ?

Thanks.

Marin Bratanov
Telerik team
 answered on 06 Sep 2021
1 answer
1.3K+ views

Hello,

Is there a way to automatically display total row count on the bottom of a TelerikGrid ?
Please note data source is an IQuerayble and Gridscroll mode is Virtual.

I want to show total row count, with filter consideration.

By the way, is it possible to display sum or average of each column ?

Thanks

 

Marin Bratanov
Telerik team
 answered on 06 Sep 2021
1 answer
123 views

If I change the RangeStart to for example 1 August 2021 in the GanttYearView, the GanttYearView still starts at 1 January 2021 which gives a lot of white noise:

 

Nadezhda Tacheva
Telerik team
 answered on 06 Sep 2021
1 answer
165 views

Hi,

I have a column and collection with different values and if I add the new value or remove the value, the filter is not refreshing.

How can I have the refresh?

Could you please guide on this.

Thanks,

Vishnu Vardhanan

Matthias
Top achievements
Rank 5
Bronze
Bronze
Iron
 answered on 06 Sep 2021
1 answer
138 views

Hi,

I have a column and collection with different values and if I add the new value or remove the value, the filter is not refreshing.

How can I have the refresh?

Could you please guide on this

Thanks,

Vishnu Vardhanan

Matthias
Top achievements
Rank 5
Bronze
Bronze
Iron
 answered on 06 Sep 2021
1 answer
415 views

I am a little confused about where kendo css stops and where bootstrap starts.

I can see that all Blazor Controls are created using kendo css classes.

Are there utilities for margin, padding and grid layout in the kendo library, can I skip bootstrap?

Dimo
Telerik team
 answered on 03 Sep 2021
1 answer
170 views

Hi Telerik Team

After several attempts to clear up the nuget feed and install the Telerik UI for Blazor I am writing to you.

I am getting the following login failed message. I have tried with both encrypted and plain-text password in the nuget.config file.

[nuget.telerik.com] The V2 feed at 'https://nuget.telerik.com/nuget/Search()?$filter=IsLatestVersion&searchTerm=''&targetFramework='net5.0'&includePrerelease=false&$skip=0&$top=26&semVerLevel=2.0.0' returned an unexpected status code '401 Logon failed.'.

The nuget.config file looks as below

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <packageSources>
    <add key="nuget.telerik.com" value="https://nuget.telerik.com/nuget" />
    <add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
  </packageSources>
  <packageRestore>
    <add key="enabled" value="True" />
    <add key="automatic" value="True" />
  </packageRestore>
  <bindingRedirects>
    <add key="skip" value="False" />
  </bindingRedirects>
  <packageManagement>
    <add key="format" value="0" />
    <add key="disabled" value="False" />
  </packageManagement>
  <packageSourceCredentials>
    <nuget.telerik.com>
      <add key="Username" value=<username> />
      <add key="Password" value=<password> />
    </nuget.telerik.com>
  </packageSourceCredentials>
</configuration>

 

Looking forward to your help!

Marin Bratanov
Telerik team
 answered on 03 Sep 2021
1 answer
450 views

Hi,

I am using Telerik UI for Blazor 2.25.0 in a Blazor Server project. I am trying to add a delete confirmation dialog to my grid by using the following documentation: https://docs.telerik.com/blazor-ui/components/treelist/editing/built-in-dialogs/delete-confirmation. However, there doesn't seem to be a ConfirmDelete parameter available.

<TelerikGrid Data="@GridDataArtists" @ref="@Grid" Height="460px" RowHeight="60" PageSize="10" Pageable="true"
                 Sortable="true" Resizable="true" FilterMode="@GridFilterMode.FilterRow" OnRead="@ReadArtists"
                 OnStateInit="@((GridStateEventArgs<Artist> args) => OnStateInitHandler(args))"
                 OnStateChanged="@((GridStateEventArgs<Artist> args) => OnStateChangedHandler(args))"
                 TotalCount="@TotalArtists" EditMode="GridEditMode.Popup" OnCreate="@CreateHandler"
                 OnDelete="DeleteHandler" ConfirmDelete="true">

The above code doesn't compile because it cannot find ConfirmDelete:

Unhandled exception rendering component: Object of type 'Telerik.Blazor.Components.TelerikGrid`1[[MusicApp.Core.Artist, MusicApp.Core, Version=1.0.0.0, Cult
ure=neutral, PublicKeyToken=null]]' does not have a property matching the name 'ConfirmDelete'.
Am I not using the correct version?
Matthias
Top achievements
Rank 5
Bronze
Bronze
Iron
 updated answer on 03 Sep 2021
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?