Dynamically create tileLayoutItem

2 Answers 969 Views
TileLayout
Eric
Top achievements
Rank 1
Iron
Iron
Iron
Eric asked on 10 May 2021, 09:11 AM | edited on 10 May 2021, 09:12 AM

Hi

The idea we have is to have a list of tileLayoutitems. The user starts with an empty TileLayout and starts a wizard, the wizard lets the user choose from a list which tilelayoutitems he or she wants to see.  We save this information in our database. So then, we need code to populate the tilelayout with the choosen tilelayout items.

Qeustion is this possible to do and how?

Eric

 

 

Andy
Top achievements
Rank 1
Iron
commented on 15 May 2021, 05:49 AM

I am doing something similar. I have a set of Razor components that I define and store in my backend to dynamically build my home page. I used RenderFragments. I inherent off the TileLayoutState:

public class myComponentlayout : TileLayoutItemState
{
public string HeaderText { get; set; } = "";
public string Class { get; set; } = "";
public RenderFragment renderFragment { get; set; }
}
Load my list of Widgets and build the RenderFraments into a new list:

case ENUMValues.Widget.W_F2COL:
{
one = new myComponentlayout();
one.renderFragment = (builder) =>
{
builder.OpenComponent(0, new WidgetFeatured2Col().GetType());
builder.AddAttribute(1, "IdWidgets", Widget.IdWidgets);
builder.CloseComponent();
};
}
break;

Build the TileLayout dynamically off the created list of RenderFragments:

<TelerikTileLayout Columns="6"
Width="100%"
RowHeight="150px"
Reorderable="true"
@ref="TileLayoutInstance">
<TileLayoutItems>
@foreach (var item in list)
{
<TileLayoutItem RowSpan="@item.RowSpan" ColSpan="@item.ColSpan" HeaderText="@item.HeaderText" Class="@item.Class">
<Content>
@item.renderFragment
</Content>
</TileLayoutItem>
}
</TileLayoutItems>
</TelerikTileLayout>

I use the MediaQuery and the GetState/SetState in OnAfterRenderAsync() to modify the row/col based on screen size.

Not sure how efficient it is but I have everything working except for changing the order on different screen sizes

2 Answers, 1 is accepted

Sort by
0
Nadezhda Tacheva
Telerik team
answered on 12 May 2021, 12:37 PM

Hi Eric,

We have an opened feature request in our public feedback portal that you might find applicable for your scenario - Command buttons in the tile header that work with draggable and provide built-in close and minimize.

The request is for command buttons in the Tile header ( such as a close button that could allow you to close/remove a certain Tile ). It also raises the question for a Visible parameter for the Tiles that could go in their state. 

Once this feature is implemented, you will be able to use the Visible parameter of the Tiles to add them from a collection and populate them in the TileLayout (also, to remove them if needed). You can also use the Tiles' state to maintain their initial position if they are removed and re-added. 

It will then be up to the application logic to handle the presentation of the available Tiles list - it can be a wizard as per your scenario or a side pane with buttons or a dropdown etc. 

I have added a vote on your behalf to increase the priority of the feature request. You can also follow it to be notified via email when its status changes ( this is the best way to know when a feature is implemented as we announce such information in the feedback portal ).

I hope you will find the above information useful and if any further questions appear, please do not hesitate to contact us.

Thank you for choosing Telerik UI for Blazor!

Regards,
Nadezhda Tacheva
Progress Telerik

Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.

Eric
Top achievements
Rank 1
commented on 12 May 2021, 02:23 PM

Thanks
0
Nadezhda Tacheva
Telerik team
answered on 07 Jun 2021, 03:14 PM

Hi,

I just wanted to let you know that we added a knowledge base article for adding and removing tiles. It is now live along with a sample project in our public blazor-ui repository - Add and Remove Tiles.  The application demonstrates a simple customizable dashboard which uses TileLayout component and allows adding and removing tiles from a collection to display the desired set of data in the main section.

Since at this stage a Visible parameter is not included in the TileLayout state, the component in the sample project uses a bool field Visible in the tiles model to handle the conditional rendering of the tiles depending on its value. With that being said, as the tiles collection reference changes in the process, the component state cannot maintain the data for the removed items and thus when they are re-added, they appear at the last position.

Such a configuration along with maintaining the TileItems state will be possible once this feature request is live as we discussed earlier in this thread.

 

Regards,
Nadezhda Tacheva
Progress Telerik

Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.

Tags
TileLayout
Asked by
Eric
Top achievements
Rank 1
Iron
Iron
Iron
Answers by
Nadezhda Tacheva
Telerik team
Share this question
or