Thread ID: |
Created: |
Updated: |
Platform: |
Replies: |
150051 | Dec 18,2019 05:24 PM UTC | Dec 19,2019 10:27 AM UTC | Blazor | 1 |
![]() |
Tags: Grid |
<EjsGrid TValue="Order" ... AllowGrouping="@SetGroup" Toolbar="@(new List<string>() { "Print" })" PrintMode="@ChangeMode">
...
</EjsGrid>
@code {
...
public bool SetGroup;
public PrintMode ChangeMode;
public void EnableGroup()
{
SetGroup = true;
}
public void DisableGroup()
{
SetGroup = false;
}
public void AllPrint()
{
ChangeMode = PrintMode.AllPages;
}
public void CurrentPrint()
{
ChangeMode = PrintMode.CurrentPage;
}
...
}
|
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.