The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
Hi,
In our application we want to have a monthly calendar feature where in the appointments, todo items etc. can be shown in each day cell.
The current MonthCalendarExt control in Syncfusion.Tools uses grid control for displaying calendar. This is very good. It would be nice if there are hooks in place to let us render what ever (text, font, color etc)we want in each "DayCell" instead of displaying just date which is a "Static" cell type.
Most of the methods in the MonthCalendarExt are marked as private. So even if I extend it, I can not override the existing methods. Please make all the grid event handlers "protected virtual" instead of "private". Also, please make the "grid" member variable protected so that it can be accessed in derived classes.
thanks,
- Reddy
ADAdministrator Syncfusion Team June 13, 2003 12:35 PM UTC
You can access the embedded grid using the virtual InitializeGrid method that passes as parameter the grid.
In a future release, there will also be a draw event exposed, and things made easier to use.
But now you can grab the grid, and use grid events like QueryCellInfo, PrepareViewStyleInfo, DrawCell and CellDrawn to customize the look of the cell.
TLTam LyJune 13, 2003 04:19 PM UTC
Davis J gave me Essential Suite Vesrion 1.6.0.8 with the the DateCellQueryInfo event for the MonthCalendarExt. This allow me to access to e.Style object to change background colors and other stuffs.
> You can access the embedded grid using the virtual InitializeGrid method that passes as parameter the grid.
>
> In a future release, there will also be a draw event exposed, and things made easier to use.
>
> But now you can grab the grid, and use grid events like QueryCellInfo, PrepareViewStyleInfo, DrawCell and CellDrawn to customize the look of the cell.
>