Thread ID: |
Created: |
Updated: |
Platform: |
Replies: |
144784 | May 22,2019 11:14 AM UTC | Jul 3,2019 01:13 PM UTC | Xamarin.Forms | 14 |
![]() |
Tags: SfDataGrid |
Hi,
Here i made "AllowGroupExpandCollapse" as true. and here i used custom caption summary template which includes check box, label and icon.so when i customize it, i could not able to see the expand/collapse icon. Please check once the below images.
in this case i could not find the icons. your sample project is not related like this.
public partial class MainPage : ContentPage
{
SfBusyIndicator indicator;
public MainPage()
{
InitializeComponent();
indicator = new SfBusyIndicator();
dataGrid.GroupExpanding += DataGrid_GroupExpanding;
}
private async void DataGrid_GroupExpanding(object sender, GroupChangingEventArgs e)
{
//// customize based on the requirement.
indicator.IsBusy = true;
indicator.IsVisible = true;
indicator.AnimationType = AnimationTypes.SlicedCircle;
grid.Children.Add(indicator);
await Task.Delay(200);
indicator.IsBusy = false;
indicator.IsVisible = false;
}
} |
This post will be permanently deleted. Are you sure you want to continue?
Sorry, An error occured while processing your request. Please try again later.
This page will automatically be redirected to the sign-in page in 10 seconds.