Telerik Forums
UI for Blazor Forum
3 answers
98 views
I remember seeing Cards on the Blazor UI Roadmap. They were scheduled for sometime this fall I think. Now I don't see them on the roadmap. Have they been dropped? Was looking forward to using them since a lot of our apps lean in to material design.
Marin Bratanov
Telerik team
 answered on 29 Sep 2020
2 answers
567 views

I'm trying to use the TileLayout to create a photo list viewer similar to your example on the TileLayout overview page. My list of photos is coming from a collection so the number of TileLayoutItem is variable. How would I do this? Here is the code I've  tried. Should i use your pager component?

 <TelerikTileLayout Columns="5" 
                       ColumnWidth="300px"
                       RowHeight="235px"
                       Reorderable="true">
        <TileLayoutItems>
            @foreach (var item in photoIdList)
            {
                <TileLayoutItem>
                    <content>
                        <div class="card">
                            <img card-img-top alt="Card image cap" src="https://myphotoapi/image/api/photo?pid=@item&w=167&h=125" />
                        </div>                     
                    </content>
                </TileLayoutItem>
            }
        </TileLayoutItems>     
    </TelerikTileLayout>

 

I keep getting this error:

crit: Microsoft.AspNetCore.Components.WebAssembly.Rendering.WebAssemblyRenderer[100]
      Unhandled exception rendering component: Object of type 'Telerik.Blazor.Components.TileLayoutItem' does not have a property matching the name 'ChildContent'.
System.InvalidOperationException: Object of type 'Telerik.Blazor.Components.TileLayoutItem' does not have a property matching the name 'ChildContent'.

Jay
Top achievements
Rank 1
Iron
Iron
 answered on 28 Sep 2020
1 answer
739 views

Hello,

Is there a possibility to set TelerikNumericTextBox without arrows for numeric values in incell editing mode?

Best regards,

Cipri

Marin Bratanov
Telerik team
 answered on 28 Sep 2020
6 answers
1.6K+ views
Hi,

I need to display % in my column, but Format="#,## %" doesn't work. What do I have to change?

Thanks for your help!

Greetings

<GridColumn Field="Menge" Title="Menge" Width="100px">
02.       <EditorTemplate>
03.          @{
04.            Current = context as Item;
05.            if (Current?.Typ != Typ.H)
06.            {
07.              <TelerikNumericTextBox T="decimal?" @bind-Value="@Current.Menge" OnChange="@ChangeMengenHandler" Decimals="3" Format="#,## %">
09.              </TelerikNumericTextBox>
10.             }
11.        }
12.        </EditorTemplate>
13. </GridColumn>
Miriam
Top achievements
Rank 1
Veteran
 answered on 28 Sep 2020
1 answer
375 views

Hello,

Is there any possibility to set a css class directly to the TreeListColumn element of TelerikTreeList > TreeListColumns? As I want to set for example the background-color of a cell depending on some conditions from the model that I'm passing to the TreeList.

Now the only thing that can be done is to set the Template and in there add a div element where I can set the css class or inline style css rules, but that's not very convenient for me as the column that has the expandable arrow will not look good, that's why it will be more convenient if I could have a posibility to set a css class directly to the td (cell) element.

Best regards,

Cipri

Marin Bratanov
Telerik team
 answered on 28 Sep 2020
1 answer
187 views
Hello,
there is a problem in binding list of tuple to the grid which results in adding one empty cell at the top of grid like if the list count is 1 there is 2 rows in the  grid which first one is completely empty
Marin Bratanov
Telerik team
 answered on 27 Sep 2020
1 answer
948 views

Hi,

I'm retrieving data using a select query into a datatable. When I try to show this data in a grid with the  AutoGenerateColumns=true, the data is not shown.

Is there a way to show the data from a datatable in a grid with automatic generation of the columns? The number of columns in the query are dynamic, before execution of the query I don't know the number of columns.

 

Thanks

 

 

Marin Bratanov
Telerik team
 answered on 27 Sep 2020
1 answer
850 views
Can someone help on how to achieve this functionality in Blazor Charts -  https://docs.telerik.com/devtools/winforms/knowledge-base/hide-chart-series
Marin Bratanov
Telerik team
 answered on 27 Sep 2020
3 answers
1.9K+ views

I am trying to set focus on a TelerikTextBox when a window is opened, but it would appear the call to js is being made before the window actually opens so the element is null.

Is there anyway to wait until the window is actually open and then call js to set focus on the textbox?

private async Task NewTicketClick()
{
    newTicket = new NewTicketViewModel
    {
        CreatedBy = userId,
        Owner = userId
    };
 
    showNewTicketWindow = true;
 
    await jSRuntime.InvokeVoidAsync("focusInputFromBlazor", new[] { ".defaultFocus" });
}
Marin Bratanov
Telerik team
 answered on 25 Sep 2020
5 answers
252 views
Love the new component; however, when updating the reorder/resize parameters, the component is re-rendered, enabling the cursors for resize and drag/drop but no functionality. In addition, when debugging, the options for the front-end do not update after the initial load.
Marin Bratanov
Telerik team
 answered on 25 Sep 2020
Narrow your results
Selected tags
Tags
+105 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?