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: components/daterangepicker/overview.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
@@ -89,7 +89,7 @@ The Blazor Date Range Picker provides various parameters that allow you to confi
89
89
|`Placeholder`|`string`| The `placeholder` attribute of the two `<input />` elements. The `Placeholder` will appear if the component is bound to **nullable** DateTime objects - `DateTime?`, but will not be rendered if the component is bound to the default value of a non-nullable DateTime objects. The Placeholder value will be displayed when the input is not focused. Once the user focuses it to start typing, the Format Placeholder (default or [customized one](#format-placeholder)) will override the Placeholder to indicate the format the date should be entered in. |
90
90
|`ShowClearButton`|`bool`| Defines if the user can clear the component value through an **x** button rendered inside the input. |
91
91
|`ShowWeekNumbers`|`bool`| Sets if the popup Calendars will display week numbers according to the [ISO-8601 format](https://learn.microsoft.com/en-us/dotnet/api/system.globalization.isoweek.getweekofyear). Note that the [ISO week number may differ from the conventional .NET week number](https://learn.microsoft.com/en-us/dotnet/api/system.globalization.calendar.getweekofyear). |
92
-
|`ShowOtherMonthDays`|`bool`<br /> (`true`)| Defines whether the leading and trailing days from other months in the Calendar popup are visible in the current month view. |
92
+
|`ShowOtherMonthDays`|`bool`| Defines whether the leading and trailing days from other months in the Calendar popup are visible in the current month view. |
93
93
|`StartValue` and `EndValue`|`T`| The current values of the inputs for start and end of the range. Can be used for two-way binding. |
94
94
|`TabIndex`|`int?`| The `tabindex` attribute of both `input` HTML elements in the component. They both will have the same `tabindex`. Use it to customize the tabbing (focus) order of the inputs on your page. |
95
95
|`Title`|`string`| The title text rendered in the header of the popup(action sheet). Applicable only when [`AdaptiveMode` is set to `Auto`]({%slug adaptive-rendering%}). |
@@ -18,10 +19,11 @@ To bind a collection of dependencies to the Gantt Chart you should use the `Data
18
19
19
20
| Feature | Type | Description |
20
21
| --- | --- | --- |
21
-
|`Data`|`IEnumerable<Object>`| The collection of dependencies. |
22
+
|`Data`|`IEnumerable<object>`| The collection of dependencies. |
22
23
|`IdField`|`string`| Unique identifier for each task. Use it for editing and hierarchy. |
23
24
|`PredecessorField`|`string`| Points to the predecessor task. |
24
25
|`SuccessorField`|`string`| Points to the successor task. |
26
+
|`TypeField`|`GanttDependencyType` enum | Points to the dependency type, which is the relationship between the two affected tasks. The supported values include `FinishFinish`, `FinishStart`, `StartStart`, and `StartFinish`. |
25
27
26
28
>note To use the Data Binding for the Gantt Dependencies you must provide all data binding features listed above.
27
29
@@ -30,144 +32,150 @@ To bind a collection of dependencies to the Gantt Chart you should use the `Data
30
32
````CSHTML
31
33
@* Bind a collection to the Data parameter of GanttDependencies. *@
0 commit comments