Skip to content

Commit 31a3347

Browse files
Integrated latest changes at 02-26-2025 10:30:10 PM
1 parent af71129 commit 31a3347

File tree

14 files changed

+33
-20
lines changed

14 files changed

+33
-20
lines changed

ej2-angular/chart/selection.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -198,4 +198,4 @@ You can apply custom style to selected points or series with [`selectionStyle`](
198198

199199
## See Also
200200

201-
* [Display selected data for range selection](./how-to/selected-data-grid/#display-selected-data-for-range-selection)
201+
* [Display selected data for range selection](./how-to/selected-data-grid#display-selected-data-for-range-selection)

ej2-angular/code-snippet/listview/paging-cs1/src/app.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import { Pager } from "@syncfusion/ej2-angular-grids";
2121
<table class="w-100"> <tr><td class="w-25">Order ID</td><td class="w-45">Ship Name</td><td class="w-25">Ship City</td></tr></table>
2222
</ng-template>
2323
<ng-template #template let-data="">
24-
<table class="w-100"> <tr><td class="w-25">{{data.OrderID}}</td><td class="w-45">{{data.ShipName}}</td><td class="w-25" >{{data.ShipCity}}</td></tr></table>
24+
<table class="w-100"> <tr><td class="w-25" title="{{data.OrderID}}">{{data.OrderID}}</td><td class="w-45" title="{{data.ShipName}}">{{data.ShipName}}</td><td class="w-25" title="{{data.ShipCity}}">{{data.ShipCity}}</td></tr></table>
2525
</ng-template>
2626
</ejs-listview>
2727
<ejs-pager [pageSize]= 'pagesize' [totalRecordsCount]='totalrec' [pageCount]='pageCount' (click)='clickevent($event)'>

ej2-angular/code-snippet/listview/paging-cs1/src/styles.css

+16-3
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,27 @@
5050
color: rgba(0, 0, 0, 0.52);
5151
}
5252

53+
#listview table {
54+
width: 100%;
55+
table-layout: fixed;
56+
}
57+
58+
#listview td {
59+
white-space: nowrap;
60+
overflow: hidden;
61+
text-overflow: ellipsis;
62+
}
63+
5364
.w-25 {
54-
width: 25% !important;
65+
width: 25% !important;
66+
max-width: 25%;
5567
}
5668

5769
.w-45 {
58-
width: 45% !important;
70+
width: 45% !important;
71+
max-width: 45%;
5972
}
6073

6174
.w-100 {
62-
width: 100% !important;
75+
width: 100% !important;
6376
}

ej2-angular/document-editor/document-management.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,6 @@ The following code shows Restrict Editing Pane. To unprotect the document, use p
6666

6767
## See Also
6868

69-
* [How to protect the document in form filling mode](../document-editor/form-fields/#protect-the-document-in-form-filling-mode)
70-
* [How to protect the document in comments only mode](../document-editor/comments/#protect-the-document-in-comments-only-mode)
69+
* [How to protect the document in form filling mode](../document-editor/form-fields#protect-the-document-in-form-filling-mode)
70+
* [How to protect the document in comments only mode](../document-editor/comments#protect-the-document-in-comments-only-mode)
7171
* [How to protect the document in track changes only mode](../document-editor/track-changes/#protect-the-document-in-track-changes-only-mode)

ej2-angular/document-editor/getting-started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To get started quickly with DocumentEditor component using CLI, you can check th
1818

1919
## Prerequisites
2020

21-
[System requirements for Syncfusion Angular Document Editor](../system-requirement/)
21+
[System requirements for Syncfusion Angular Document Editor](../system-requirement)
2222

2323
## Dependencies
2424

ej2-angular/drop-down-list/filtering.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,6 @@ In the following sample,data with diacritics are bound as dataSource for DropDow
102102

103103
## See Also
104104

105-
* [How to limit the search result while filtering](./how-to/search-on-filtering/)
106-
* [How to highlight the matched characters in filtering](./how-to/highlight-filtering/)
107-
* [How to modify the result data using remote data source](./how-to/modify-data/)
105+
* [How to limit the search result while filtering](./how-to/search-on-filtering)
106+
* [How to highlight the matched characters in filtering](./how-to/highlight-filtering)
107+
* [How to modify the result data using remote data source](./how-to/modify-data)

ej2-angular/drop-down-list/grouping.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ The grouping header is also provided with customization option. This allows cust
3636

3737
## See Also
3838

39-
* [How to limit the search result while filtering](./how-to/search-on-filtering/)
40-
* [How to highlight the matched characters in filtering](./how-to/highlight-filtering/)
41-
* [How to modify the result data using remote data source](./how-to/modify-data/)
39+
* [How to limit the search result while filtering](./how-to/search-on-filtering)
40+
* [How to highlight the matched characters in filtering](./how-to/highlight-filtering)
41+
* [How to modify the result data using remote data source](./how-to/modify-data)

ej2-angular/getting-started/aspnet-core.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,4 +225,4 @@ N> [Access the Angular Sample integrated with ASP.NET Core on GitHub](https://gi
225225
## See Also
226226

227227
- [Creating an ASP.NET Core with Angular project using Visual Studio](https://learn.microsoft.com/en-us/visualstudio/javascript/tutorial-asp-net-core-with-angular?view=vs-2022)
228-
- [Getting Started with Angular CLI](../getting-started/angular-cli/)
228+
- [Getting Started with Angular CLI](../getting-started/angular-cli)

ej2-angular/grid/searching.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -268,4 +268,4 @@ The following example demonstrates how to clear the searched records using an ex
268268
269269
## See also
270270

271-
* [How to perform search by using Wildcard and LIKE operator filter](./filtering/filtering/#wildcard-and-like-operator-filter)
271+
* [How to perform search by using Wildcard and LIKE operator filter](./filtering/filtering#wildcard-and-like-operator-filter)

ej2-angular/samples/grid/row-chart-template/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@
3232
font-size: 20px;
3333
}
3434
</style>
35-
<style>@import"https://fonts.googleapis.com/css?family=Roboto:400,500,700"</style><link rel="stylesheet" href="styles.4bfd6d7232a518a9.css" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="styles.4bfd6d7232a518a9.css"></noscript></head>
35+
<style>@import"https://fonts.googleapis.com/css?family=Roboto:400,500,700"</style><link rel="stylesheet" href="styles.2ffec9128791d27d.css" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="styles.2ffec9128791d27d.css"></noscript></head>
3636
<body>
3737
<app-root>
3838
<div id="loader">Loading....</div>
3939
</app-root>
40-
<script src="runtime.cf3bdadb8fd8abdc.js" type="module"></script><script src="main.6128400f19407c19.js" type="module"></script></body>
40+
<script src="runtime.cf3bdadb8fd8abdc.js" type="module"></script><script src="main.a95610935ec7de45.js" type="module"></script></body>
4141
</html>

ej2-angular/samples/grid/row-chart-template/main.6128400f19407c19.js

-1
This file was deleted.

ej2-angular/samples/grid/row-chart-template/main.a95610935ec7de45.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ej2-angular/samples/grid/row-chart-template/styles.2ffec9128791d27d.css

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ej2-angular/samples/grid/row-chart-template/styles.4bfd6d7232a518a9.css

-1
This file was deleted.

0 commit comments

Comments
 (0)