Skip to content

Commit 7725996

Browse files
Merge pull request #456 from Syncfusion-Content/hotfix/hotfix-v26.1.35
DOCINFRA-2341_merged_using_automation
2 parents 17a41f4 + 0bc697d commit 7725996

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

ej2-react/code-snippet/query-builder/drag-and-drop-cs1/app/app.jsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ function App() {
2929
{ field: "Country", label: "Country", type: "string" }
3030
];
3131
let importRules = {
32-
condition: "",
32+
condition: "and",
3333
rules: [
34-
{ label: "First Name", field: "FirstName", type: "string", operator: "startswith", value: "Andre", condition: "and" },
35-
{ label: "Last Name", field: "LastName", type: "string", operator: "in", value: ['Davolio', 'Buchanan'], condition: "or" },
34+
{ label: "First Name", field: "FirstName", type: "string", operator: "startswith", value: "Andre" },
35+
{ label: "Last Name", field: "LastName", type: "string", operator: "in", value: ['Davolio', 'Buchanan'] },
3636
{ label: "Age", field: "Age", type: "number", operator: "greaterthan", value: 29, condition: "and" },
3737
{
3838
condition: "or", rules: [
39-
{ label: "Is Developer", field: "IsDeveloper", type: "boolean", operator: "equal", value: true, condition: "and" },
39+
{ label: "Is Developer", field: "IsDeveloper", type: "boolean", operator: "equal", value: true },
4040
{ label: "Primary Framework", field: "PrimaryFramework", type: "string", operator: "equal", value: "React" }
4141
]
4242
},

ej2-react/code-snippet/query-builder/drag-and-drop-cs1/app/app.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ function App() {
3333
]
3434

3535
let importRules: RuleModel = {
36-
condition: "",
36+
condition: "and",
3737
rules: [
38-
{ label: "First Name", field: "FirstName", type: "string", operator: "startswith", value: "Andre", condition: "and" },
39-
{ label: "Last Name", field: "LastName", type: "string", operator: "in", value: ['Davolio', 'Buchanan'], condition: "or" },
38+
{ label: "First Name", field: "FirstName", type: "string", operator: "startswith", value: "Andre" },
39+
{ label: "Last Name", field: "LastName", type: "string", operator: "in", value: ['Davolio', 'Buchanan'] },
4040
{ label: "Age", field: "Age", type: "number", operator: "greaterthan", value: 29, condition: "and" },
4141
{
4242
condition: "or", rules: [
43-
{ label: "Is Developer", field: "IsDeveloper", type: "boolean", operator: "equal", value: true, condition: "and" },
43+
{ label: "Is Developer", field: "IsDeveloper", type: "boolean", operator: "equal", value: true },
4444
{ label: "Primary Framework", field: "PrimaryFramework", type: "string", operator: "equal", value: "React" }
4545
]
4646
},

ej2-react/diagram/undo-redo.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Undo/redo commands can be executed through shortcut keys. Shortcut key for undo
2424

2525
## Undo/redo through public APIs
2626

27-
The client-side methods [`undo`](https://ej2.syncfusion.com/react/documentation/api/diagram) and [`redo`](https://ej2.syncfusion.com/react/documentation/api/diagram) help you to revert/restore the changes. The following code example illustrates how to undo/redo the changes through script.
27+
The client-side methods [`undo`](https://ej2.syncfusion.com/react/documentation/api/diagram/) and [`redo`](https://ej2.syncfusion.com/react/documentation/api/diagram/) help you to revert/restore the changes. The following code example illustrates how to undo/redo the changes through script.
2828

2929
The following code example illustrates how to undo/redo the changes through script.
3030

@@ -56,7 +56,7 @@ When a change in the diagram is reverted or restored (undo/redo), the historyCha
5656

5757
History list allows to revert or restore multiple changes through a single undo/redo command. For example, revert/restore the fill color change of multiple elements at a time.
5858

59-
The client-side method [`startGroupAction`](https://ej2.syncfusion.com/react/documentation/api/diagram) is used to notify the diagram to start grouping the changes. The client-side method [`endGroupAction`](https://ej2.syncfusion.com/react/documentation/api/diagram) is used to notify to stop grouping the changes. The following code illustrates how to undo/redo fillColor change of multiple elements at a time.
59+
The client-side method [`startGroupAction`](https://ej2.syncfusion.com/react/documentation/api/diagram/) is used to notify the diagram to start grouping the changes. The client-side method [`endGroupAction`](https://ej2.syncfusion.com/react/documentation/api/diagram/) is used to notify to stop grouping the changes. The following code illustrates how to undo/redo fillColor change of multiple elements at a time.
6060

6161
{% tabs %}
6262
{% highlight js tabtitle="index.jsx" %}
@@ -148,7 +148,7 @@ let redoStack = diagramInstance.historyManager.redoStack;
148148

149149
## History change event
150150

151-
The [`historyChange`](https://ej2.syncfusion.com/react/documentation/api/diagram) event triggers, whenever the interaction of the node and connector is take place.
151+
The [`historyChange`](https://ej2.syncfusion.com/react/documentation/api/diagram/) event triggers, whenever the interaction of the node and connector is take place.
152152

153153
```ts
154154
let diagramInstance: DiagramComponent;
@@ -177,7 +177,7 @@ root.render(<App />);
177177

178178
## Stack Limit
179179

180-
The [`stackLimit`](https://ej2.syncfusion.com/react/documentation/api/diagram) property of history manager is used to limits the number of actions to be stored on the history manager.
180+
The [`stackLimit`](https://ej2.syncfusion.com/react/documentation/api/diagram/) property of history manager is used to limits the number of actions to be stored on the history manager.
181181

182182
{% tabs %}
183183
{% highlight js tabtitle="index.jsx" %}

ej2-react/grid/pdf-export/pdf-export.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ The `hierarchyExportMode` property allows you to specify the exporting behavior
244244
| All | Exports the master grid with all child grids, expanded or not. |
245245
| None | Exports only the master grid without any child grids. |
246246

247-
The following example demonstrates how to export hierarchical grid to PDF document. Also change the `pdfExportProperties.hierarchyExportMode` property by using [value](https://ej2.syncfusion.com/react/documentation/api/drop-down-list#value) property of the `DropDownList` component.
247+
The following example demonstrates how to export hierarchical grid to PDF document. Also change the `pdfExportProperties.hierarchyExportMode` property by using [value](https://ej2.syncfusion.com/react/documentation/api/drop-down-list/#value) property of the `DropDownList` component.
248248

249249
{% tabs %}
250250
{% highlight js tabtitle="App.jsx" %}

0 commit comments

Comments
 (0)