I am using paging control in the xamgrid. The xamgrid has child bands enabled and therefore showing paging controls in child bands as well. How do i disable showing paging in child bands while showing in the xamgrid?
Works. Thanks for the help page url!
Hi,
You can disable paging for a certain ColumnLayout. The code will look like that:
... <ig:XamGrid x:Name="MyXamGrid"> <ig:XamGrid.Columns> <ig:ColumnLayout Key="NestedCollectionKey"> <ig:ColumnLayout.PagerSettings> <ig:PagerSettingsOverride AllowPaging="None" /> </ig:ColumnLayout.PagerSettings> </ig:ColumnLayout> </ig:XamGrid.Columns> ...
You can read more about ColumnLayouts here: http://help.infragistics.com/NetAdvantage/Silverlight/2010.3/CLR4.0/?page=SL_xamGrid_Define_Column_Layout.html
Hope this helps