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: blazor/diagram/connectors/segments/bezier/bezier.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -244,7 +244,7 @@ You can download a complete working sample from [GitHub](https://github.com/Sync
244
244
245
245

246
246
247
-
###How to customize Bezier Segment Thumb Shape
247
+
## How to customize Bezier Segment Thumb Shape
248
248
249
249
The Bezier connector can have multiple segments between the source and target points. By default, these segments are rendered as circles, but this can be customized either globally or for individual connectors using the [SegmentThumbSettings](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Diagram.SegmentThumbSettings.html) class.
Copy file name to clipboardExpand all lines: blazor/diagram/connectors/segments/straight.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -100,7 +100,7 @@ You can download a complete working sample from [GitHub](https://github.com/Sync
100
100
101
101

102
102
103
-
###How to customize Straight Segment Thumb Shape
103
+
## How to customize Straight Segment Thumb Shape
104
104
105
105
The Straight connector can have multiple segments between the source and target points. By default, these segments are rendered as circles, but this can be customized either globally or for individual connectors using the [SegmentThumbSettings](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Diagram.SegmentThumbSettings.html) class.
Copy file name to clipboardExpand all lines: blazor/diagram/tool-tip.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -833,7 +833,7 @@ You can download a complete working sample from [GitHub](https://github.com/Sync
833
833
834
834
For more information about tooltip, refer to [Tooltip](https://blazor.syncfusion.com/documentation/diagram/tool-tip)
835
835
836
-
###How to set tooltip for user handles
836
+
## How to set tooltip for user handles
837
837
838
838
The Diagram component supports displaying tooltips when the mouse hovers over any [UserHandle](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Diagram.SelectorConstraints.html#Syncfusion_Blazor_Diagram_SelectorConstraints_UserHandle). To achieve this, you need to configure the `Tooltip` property of the `UserHandle` to include the tooltip [Content](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Diagram.DiagramTooltip.html#Syncfusion_Blazor_Diagram_DiagramTooltip_Content) and set its [Position](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Diagram.DiagramTooltip.html#Syncfusion_Blazor_Diagram_DiagramTooltip_Position) appropriately. This configuration ensures that relevant information is displayed at the correct position relative to the handle when users hover over it.
839
839
@@ -991,7 +991,7 @@ The diagram supports displaying tooltips when the mouse hovers over any [FixedUs
991
991
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/UserHandle/FixedUserHandleTooltip)
992
992

993
993
994
-
## How to set sticky tooltip for fixed user handles
994
+
###How to set sticky tooltip for fixed user handles
995
995
996
996
With this mode set to `true`, Tooltips for fixed user handles can be made to show up on the screen as long as the close icon is pressed. In this mode, close icon is attached to the Tooltip located at the top right corner. This mode can be enabled or disabled using the `IsSticky` property in tooltip. By default, the value of the IsSticky property is set to false.
997
997
@@ -1115,7 +1115,7 @@ You can download a complete working sample from [GitHub](https://github.com/Sync
1115
1115
1116
1116

1117
1117
1118
-
## How to set sticky tooltip for ports
1118
+
###How to set sticky tooltip for ports
1119
1119
1120
1120
You can configure tooltips for ports to remain visible until the close icon is pressed. This feature is known as a "sticky" tooltip. When sticky mode is enabled, a close icon appears at the top right corner of the tooltip, allowing users to manually close it.
Copy file name to clipboardExpand all lines: blazor/gantt-chart/criticalpath.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ documentation: ug
11
11
12
12
The critical path in a project is indicated by a single task or a series of tasks. If a task in critical path is delayed, the entire project will be delayed. A task is considered to be critical if any delay to this task would affect the project end date.
13
13
14
-
The critical path can be enabled in Gantt by using the built-in toolbar button or [EnableCriticalPath](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Gantt.SfGantt-1.html#Syncfusion_Blazor_Gantt_SfGantt_1_EnableCriticalPath) property.
14
+
The critical path can be enabled in the Gantt Chart by using the built-in toolbar button or by setting the [EnableCriticalPath](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Gantt.SfGantt-1.html#Syncfusion_Blazor_Gantt_SfGantt_1_EnableCriticalPath) property to true in the [SfGantt](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Gantt.SfGantt-1.html) component.
15
15
16
16
The following code example shows how to display the critical path in the Gantt control:
17
17
@@ -68,9 +68,9 @@ The critical path settings in the Gantt Chart component determine the default sl
68
68
69
69
Slack is a measure of how many days a task can be delayed without affecting the project's completion. By default, tasks with zero or negative slack values are critical, while tasks with positive slack values are non-critical. If a task's end date is the same as the project's end date, the slack value is 0, and the task is considered critical.
70
70
71
-
You can change the default behavior of critical tasks by using the slackValue property of `GanttCriticalPathSettings`. This property defines how many days a task can be delayed before it is considered critical. For instance, in the following code example, tasks with two days of slack are shown on the critical path, so potential issues can be detected earlier.
71
+
You can change the default behavior of critical tasks by using the [SlackValue](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Gantt.GanttCriticalPathSettings.html#Syncfusion_Blazor_Gantt_GanttCriticalPathSettings_SlackValue) property of [GanttCriticalPathSettings](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Gantt.GanttCriticalPathSettings.html). This property defines how many days a task can be delayed before it is considered critical. For instance, in the following code example, tasks with two days of slack are shown on the critical path, so potential issues can be detected earlier.
72
72
73
-
By adjusting the slackValue, you can control which tasks are critical and ensure that potential issues are identified and addressed in a timely manner.
73
+
By adjusting the `SlackValue`, you can control which tasks are critical and ensure that potential issues are identified and addressed in a timely manner.
74
74
75
75
```cshtml
76
76
@using Syncfusion.Blazor.Gantt
@@ -124,7 +124,7 @@ By adjusting the slackValue, you can control which tasks are critical and ensure
124
124
125
125
The taskbar in critical path can be customized by using [QueryChartRowInfo](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Gantt.GanttEvents-1.html#Syncfusion_Blazor_Gantt_GanttEvents_1_QueryChartRowInfo) event. The [GanttTaskModel](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Gantt.QueryChartRowInfoEventArgs-1.html#Syncfusion_Blazor_Gantt_QueryChartRowInfoEventArgs_1_GanttTaskModel) in the event argument is used to retrieve taskbar information.
126
126
127
-
The following code example shows how to customize the critical path taskbar in the Gantt control:
127
+
The following code snippet demonstrates how to customize the appearance of critical path taskbars in a Gantt Chart:
128
128
129
129
```cshtml
130
130
@using Syncfusion.Blazor.Gantt
@@ -192,3 +192,5 @@ The following code example shows how to customize the critical path taskbar in t
>If the [ProjectEndDate](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Gantt.SfGantt-1.html#Syncfusion_Blazor_Gantt_SfGantt_1_ProjectEndDate) property is set in the `SfGantt`, any task that ends on or after this date is considered critical. If the `ProjectEndDate` is not set, the maximum end date from the task records is used to determine which tasks are critical.
<SfMultiColumnComboBox@bind-Value="@ProductModel.Name"DataSource="@Products"ValueField="Name"TextField="Name"Placeholder="Select any product"PopupWidth="600px">
title: Form Validation in Syncfusion Blazor MultiColumn ComboBox
4
+
description: Checkout and learn about Form validation with Blazor MultiColumn ComboBox component in Blazor Sever App and Blazor WebAssembly App.
5
+
platform: Blazor
6
+
control: MultiColumn ComboBox
7
+
documentation: ug
8
+
---
9
+
10
+
# Form Validation in MultiColumn ComboBox
11
+
12
+
This demonstrates the creation of a form that includes a MultiColumn ComboBox, allowing the user to select an option from a list of items. The form also includes validation, which verifies that all required fields are filled out before the form can be submitted.
13
+
14
+
## MultiColumn ComboBox inside edit form
15
+
16
+
The MultiColumn ComboBox component can be used inside an EditForm to create a form that includes a list for selecting an option. The `EditForm` component validates all data annotation rules using the `DataAnnotationsValidator` component.
17
+
18
+
When the MultiColumn ComboBox input is valid, the form is ready to be submitted. If the input is invalid, an error message will be displayed until a valid value is chosen.
19
+
20
+
* The EditForm component wraps the entire form, has the Model attribute set to the model variable of type, and triggers the OnValidSubmit() method when the form is submitted.
21
+
* The DataAnnotationsValidator component enables validation based on the Data Annotations attributes applied on the model properties.
22
+
* The ValidationSummary component displays a summary of all validation errors on the form.
23
+
* The ValidationMessage component displays a validation error message for the Name property of the model variable.
24
+
* The submit button submits the form and triggers the OnValidSubmit() method when clicked.
title: Localization in Syncfusion Blazor MultiColumn ComboBox
4
+
description: Checkout and learn here all about Localization in Syncfusion Blazor MultiColumn ComboBox component and much more.
5
+
platform: Blazor
6
+
control: MultiColumn ComboBox
7
+
documentation: ug
8
+
---
9
+
10
+
# Globalization and Localization in Blazor ComboBox Component
11
+
12
+
## Localization
13
+
14
+
[Blazor MultiColumn ComboBox](https://www.syncfusion.com/blazor-components/blazor-multicolumn-combobox) component can be localized. Refer to [Blazor Localization](https://blazor.syncfusion.com/documentation/common/localization) topic to localize Syncfusion Blazor components.
15
+
16
+
## Globalization
17
+
18
+
[Blazor MultiColumn ComboBox](https://www.syncfusion.com/blazor-components/blazor-multicolumn-combobox) component can be localized. Refer to [Blazor Globalization](https://blazor.syncfusion.com/documentation/common/globalization) topic helps to demonstrate how globalization can be implemented in a Blazor application.
0 commit comments