Split List in two column grid

Hello,

I'm using SfGrid to display a list, let's say I want to split the list into two columns if amount is more than 8.

 Instead of displaying the default:


I want to split the list/grid into something like this if amount is greater than 8:


Any help would be appreciated.

Thanks


1 Reply

MS Monisha Saravanan Syncfusion Team February 7, 2022 12:51 PM UTC

Hi Celso, 

Greetings from Syncfusion support. 

We have analyzed your query and we would like to inform that it is not possible to split the list of values into two columns. Instead we suggest you to use GridPageSettings and  we can set page size as required. Kindly refer the attached code snippet and documentation for your reference. 

<SfGrid DataSource="@OrdersAllowPaging="true"> 
    <GridPageSettings PageSize="8"></GridPageSettings> 
         <GridColumns> 
... 
    </GridColumns> 
</SfGrid> 



Kindly get back to us if you have further queries. 

Regards,
Monisha 


Loader.
Up arrow icon