You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ej2-asp-core-mvc/schedule/EJ2_ASP.MVC/cell-customization.md
+12-12Lines changed: 12 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
layout: post
3
-
title: Cell Customization in ##Platform_Name## Schedule Component
3
+
title: Cell Customization in ##Platform_Name## Schedule Component| Syncfusion
4
4
description: Learn here all about Cell Customization in Syncfusion ##Platform_Name## Schedule component of Syncfusion Essential JS 2 and more.
5
5
platform: ej2-asp-core-mvc
6
6
control: Cell Customization
@@ -9,13 +9,13 @@ documentation: ug
9
9
---
10
10
11
11
12
-
# Cell Customization
12
+
# Cell Customization in ##Platform_Name## Schedule Component
13
13
14
-
The cells of the Scheduler can be easily customized either using the cell template or `RenderCell` event.
14
+
The cells of the Scheduler can be easily customized either using the cell template or [`RenderCell`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Schedule.Schedule.html#Syncfusion_EJ2_Schedule_Schedule_RenderCell) event.
15
15
16
16
## Setting cell dimensions in all views
17
17
18
-
The height and width of the Scheduler cells can be customized either to increase or reduce its size through the `CssClass` property, which overrides the default CSS applied on cells.
18
+
The height and width of the Scheduler cells can be customized either to increase or reduce its size through the [`CssClass`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Schedule.Schedule.html#Syncfusion_EJ2_Schedule_Schedule_CssClass) property, which overrides the default CSS applied on cells.
19
19
20
20
{% if page.publishingplatform == "aspnet-core" %}
21
21
@@ -73,11 +73,11 @@ You can check whether the given time range slots are available for event creatio
73
73
74
74
## Customizing cells in all the views
75
75
76
-
It is possible to customize the appearance of the cells using both template options and `RenderCell` event on all the views.
76
+
It is possible to customize the appearance of the cells using both template options and [`RenderCell`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Schedule.Schedule.html#Syncfusion_EJ2_Schedule_Schedule_RenderCell) event on all the views.
77
77
78
78
### Using template
79
79
80
-
The `CellTemplate` option accepts the template string and is used to customize the cell background with specific images or appropriate text on the given date values.
80
+
The [`CellTemplate`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Schedule.Schedule.html#Syncfusion_EJ2_Schedule_Schedule_CellTemplate) option accepts the template string and is used to customize the cell background with specific images or appropriate text on the given date values.
81
81
82
82
{% if page.publishingplatform == "aspnet-core" %}
83
83
@@ -106,7 +106,7 @@ The `CellTemplate` option accepts the template string and is used to customize t
106
106
107
107
### Using renderCell event
108
108
109
-
An alternative to `CellTemplate` is the `RenderCell` event, which can also be used to customize the cells with appropriate images or formatted text values.
109
+
An alternative to [`CellTemplate`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Schedule.Schedule.html#Syncfusion_EJ2_Schedule_Schedule_CellTemplate) is the [`RenderCell`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Schedule.Schedule.html#Syncfusion_EJ2_Schedule_Schedule_RenderCell) event, which can also be used to customize the cells with appropriate images or formatted text values.
110
110
111
111
{% if page.publishingplatform == "aspnet-core" %}
112
112
@@ -133,7 +133,7 @@ An alternative to `CellTemplate` is the `RenderCell` event, which can also be us
133
133
134
134
135
135
136
-
You can customize cells such as work cells, month cells, all-day cells, header cells, resource header cells using `RenderCell` event by checking the `elementType` option within the event. You can check `elementType` with any of the following.
136
+
You can customize cells such as work cells, month cells, all-day cells, header cells, resource header cells using [`RenderCell`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Schedule.Schedule.html#Syncfusion_EJ2_Schedule_Schedule_RenderCell) event by checking the `elementType` option within the event. You can check `elementType` with any of the following.
137
137
138
138
| Element type | Description |
139
139
|-------|---------|
@@ -151,7 +151,7 @@ You can customize cells such as work cells, month cells, all-day cells, header c
151
151
152
152
## Customizing cell header in month view
153
153
154
-
The month header of each date cell in the month view can be customized using the `CellHeaderTemplate` option which accepts the string or HTMLElement. The corresponding date can be accessed with the template.
154
+
The month header of each date cell in the month view can be customized using the [`CellHeaderTemplate`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Schedule.Schedule.html#Syncfusion_EJ2_Schedule_Schedule_CellHeaderTemplate) option which accepts the string or HTMLElement. The corresponding date can be accessed with the template.
155
155
156
156
{% if page.publishingplatform == "aspnet-core" %}
157
157
@@ -178,7 +178,7 @@ The month header of each date cell in the month view can be customized using the
178
178
179
179
## Customizing the minimum and maximum date values
180
180
181
-
Providing the `minDate` and `maxDate` property with some date values, allows the Scheduler to set the minimum and maximum date range. The Scheduler date that lies beyond this minimum and maximum date range will be in a disabled state so that the date navigation will be blocked beyond the specified date range.
181
+
Providing the [`minDate`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Schedule.Schedule.html#Syncfusion_EJ2_Schedule_Schedule_MinDate) and [`maxDate`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Schedule.Schedule.html#Syncfusion_EJ2_Schedule_Schedule_MaxDate) property with some date values, allows the Scheduler to set the minimum and maximum date range. The Scheduler date that lies beyond this minimum and maximum date range will be in a disabled state so that the date navigation will be blocked beyond the specified date range.
182
182
183
183
{% if page.publishingplatform == "aspnet-core" %}
184
184
@@ -205,7 +205,7 @@ Providing the `minDate` and `maxDate` property with some date values, allows the
205
205
206
206
207
207
208
-
N>By default, the `minDate` property value is set to new Date(1900, 0, 1) and `maxDate` property value is set to new Date(2099, 11, 31). The user can also set the customized `minDate` and `maxDate` property values.
208
+
N>By default, the [`minDate`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Schedule.Schedule.html#Syncfusion_EJ2_Schedule_Schedule_MinDate) property value is set to new Date(1900, 0, 1) and [`maxDate`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Schedule.Schedule.html#Syncfusion_EJ2_Schedule_Schedule_MaxDate) property value is set to new Date(2099, 11, 31). The user can also set the customized [`minDate`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Schedule.Schedule.html#Syncfusion_EJ2_Schedule_Schedule_MinDate) and [`maxDate`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Schedule.Schedule.html#Syncfusion_EJ2_Schedule_Schedule_MaxDate) property values.
209
209
210
210
## Customizing the weekend cells background color
211
211
@@ -260,6 +260,6 @@ And, the background color for weekend cells in the Month view through the [`cssC
260
260
261
261
## How to disable multiple cell and row selection in Schedule
262
262
263
-
By default, the `AllowMultiCellSelection` and `AllowMultiRowSelection` properties of the Schedule are set to `true`. So, the Schedule allows user to select multiple cells and rows. If the user want to disable this multiple cell and row selection. The user can disable this feature by setting up `false` to these properties.
263
+
By default, the [`AllowMultiCellSelection`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Schedule.Schedule.html#Syncfusion_EJ2_Schedule_Schedule_AllowMultiCellSelection) and [`AllowMultiRowSelection`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Schedule.Schedule.html#Syncfusion_EJ2_Schedule_Schedule_AllowMultiRowSelection) properties of the Schedule are set to `true`. So, the Schedule allows user to select multiple cells and rows. If the user want to disable this multiple cell and row selection. The user can disable this feature by setting up `false` to these properties.
264
264
265
265
N> You can refer to our [ASP.NET MVC Scheduler](https://www.syncfusion.com/aspnet-mvc-ui-controls/scheduler) feature tour page for its groundbreaking feature representations. You can also explore our [ASP.NET MVC Scheduler](https://ej2.syncfusion.com/aspnetmvc/Schedule/Overview#/material) example to knows how to present and manipulate data.
Copy file name to clipboardExpand all lines: ej2-asp-core-mvc/schedule/EJ2_ASP.MVC/context-menu.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
layout: post
3
-
title: Context Menu in ##Platform_Name## Schedule Component
3
+
title: Context Menu in ##Platform_Name## Schedule Component| Syncfusion
4
4
description: Learn here all about Context Menu in Syncfusion ##Platform_Name## Schedule component of Syncfusion Essential JS 2 and more.
5
5
platform: ej2-asp-core-mvc
6
6
control: Context Menu
@@ -9,13 +9,13 @@ documentation: ug
9
9
---
10
10
11
11
12
-
# Context menu
12
+
# Context menu in ##Platform_Name## Schedule Component
13
13
14
-
You can display context menu on work cells and appointments of Scheduler by making use of the `ContextMenu` control manually from the application end. In the following code example, context menu control is being added from sample end and set its target as `Scheduler`.
14
+
You can display context menu on work cells and appointments of Scheduler by making use of the [`ContextMenu`](https://ej2.syncfusion.com/aspnetmvc/documentation/context-menu/getting-started) control manually from the application end. In the following code example, context menu control is being added from sample end and set its target as `Scheduler`.
15
15
16
16
On Scheduler cells, you can display the menu items such as `New Event`, `New Recurring Event` and `Today` option. For appointments, you can display its related options such as `Edit Event` and `Delete Event`. The default event window can be opened for appointment creation and editing using the `openEditor` method of Scheduler.
17
17
18
-
The deletion of appointments can be done by using the `deleteEvent` public method. Also, the `SelectedDate` property can be used to navigate between different dates.
18
+
The deletion of appointments can be done by using the `deleteEvent` public method. Also, the [`SelectedDate`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Schedule.Schedule.html#Syncfusion_EJ2_Schedule_Schedule_SelectedDate) property can be used to navigate between different dates.
19
19
20
20
N> You can also display custom menu options on Scheduler cells and appointments. Context menu will open on tap-hold in responsive mode.
0 commit comments