THe docs say this
I can add a HeaderItemTemplate to get what I need, but how do I add a HeaderTemplate and keep the Item Template controls?
Relatively new to XAML and using these controls..
I am trying to use the Tab control in a simar way to a previous post, with icon, label, close button to try and dynamically add, remove tabs etc
It seems when the MAUI desktop window is sized smaller, the tabs are scrollable/slidable, but its not obvious to the user, so want to show some kind of indicator (similar to what the toolbar does) maybe this a feature to add?
Feature: have scrollable buttons to scroll the Header Items like how the toolbar works
Hi,
Since migrating to MAUI .NET8 GA 8.0.3 (and Telerik 6.5) - on iOS the RadListView keeps repeatedly triggering the defined LoadOnDemand command to get more items even though list has not been scrolled by user (and there are still plenty of items off screen / bottom of list has not been reached).
I also refer to this previous post which describes how we are using the RadListView - Grouped mode and based on advice using <Grid RowDefinitions="Auto" ...> wrapped around items to ensure items with multiple heights are rendered correctly :
https://www.telerik.com/forums/telerik-radlistview-failing-to-render-grouped-list-items-correctly-on-ios-maui-net7
For example we have RadListView where 10 items are loaded initially - and then we load additional sets of 10 items each time from API when the LoadOnDemand command is triggered :
- On iOS .NET8 MAUI - even when list is not even scrolled by user it & there are still plenty of items off screen it just keeps triggering the LoadOnDemand command every few seconds to ask for more items.
- On Android .NET8 MAUI, and the previous .NET7 MAUI releases (both Android/iOS) - we were not seeing this behaviour.
Note that (as per recommended implementation in docs) we have LoadOnDemandMode set to 'Automatic', IsLoadOnDemandEnabled to 'True' and a ListViewUserCommand of id = 'LoadOnDemand' defined under the Commands property.
Can please advise when a fix can be provided for this.
thanks
Niall
Hello,
I'm looking for a control for .net maui for cross-platform desktop development that lets you resize the different sections of your user interface like the GridSplitter control does in WinUI.
Does one exist?
Hi,
I updated VS to the last version and now everytime i add a datagrid to the Xaml it crashes everything. In a past project i could add all the datagrids i wanted no problem, but now even in a new Maui project with only a MainPage i can't even just putting a <telerik:RadDataGrid and pressing / to close the tag because it crashes.
I guess this could be more a visual studio problem, but it's there a work around?
I'm trying the 6.5 trial controls in a MAUI project on net 8.0.
Thanks
EDIT: Reinstalled VS and repair it after, it works now. Admin can close the question
Hi,
I am using a DockLayout in my app.
Initially only a content is shown which occupies the whole screen. upon button click the "right" panel of docklayout is visible and the main content is resized. This works great on desktop.
On smaller screen (tablet, mobiles) I would like to "overlay" the right dock panel on top of the main content and dont want to resize it as there is not much space for the resized (main) content.
I created similar layout manually using Grid and frame and "onIdiom" which works.
I was wondering if Docklayout has some similar functionality?