Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion angular/Grid/Columns.md
Original file line number Diff line number Diff line change
Expand Up @@ -713,7 +713,7 @@ The following output is displayed as a result of the above code example.

[Expression](https://help.syncfusion.com/api/angular/ejgrid#members:columns-template "Expression") column is possible only for [`template`](https://help.syncfusion.com/api/angular/ejgrid#members:columns-template "template") column.

You can use JsRender syntax in the template.For more information about JsRender syntax, please refer [the link](http://www.jsviews.com/#jsrapi "the link").
You can use JsRender syntax in the template.For more information about JsRender syntax, please refer [the link](https://www.jsviews.com/#jsrapi "the link").

N> This expression column is supported at read only mode.

Expand Down
8 changes: 4 additions & 4 deletions angular/Grid/Getting-Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,12 +118,12 @@ N> 2.Events can be bound to the control using the event name within bracket [`()
![Angular Grid Enable Paging](Getting-started_images/Getting-started2_img2.png)
{:.image }

N> Pager settings can be customized by using the `pageSize` of [`pageSettings`](http://help.syncfusion.com/api/angular/ejgrid#members:pagesettings-pagesize) property. When it is not given the default values for `pageSize` and `pageCount` are 12 and 8 respectively.
N> Pager settings can be customized by using the `pageSize` of [`pageSettings`](https://help.syncfusion.com/api/angular/ejgrid#members:pagesettings-pagesize) property. When it is not given the default values for `pageSize` and `pageCount` are 12 and 8 respectively.


## Enable Filtering

[`Filtering`](https://help.syncfusion.com/angular/grid/filter) can be enabled by setting the [`allowFiltering`](https://help.syncfusion.com/api/angular/ejgrid#members:allowfiltering) to be `true`. By default, the filter bar row is displayed to perform filtering, you can change the filter type by using `filterType` of [`filterSetting`](http://help.syncfusion.com/api/angular/ejgrid#members:filtersettings) property.
[`Filtering`](https://help.syncfusion.com/angular/grid/filter) can be enabled by setting the [`allowFiltering`](https://help.syncfusion.com/api/angular/ejgrid#members:allowfiltering) to be `true`. By default, the filter bar row is displayed to perform filtering, you can change the filter type by using `filterType` of [`filterSetting`](https://help.syncfusion.com/api/angular/ejgrid#members:filtersettings) property.


{% highlight html %}
Expand Down Expand Up @@ -165,7 +165,7 @@ N> Pager settings can be customized by using the `pageSize` of [`pageSettings`](

## Enable Grouping

[`Grouping`](https://help.syncfusion.com/angular/grid/grouping) can be enabled by setting the [`allowGrouping`](http://help.syncfusion.com/api/angular/ejgrid#members:allowgrouping) to `true`. Columns can be grouped dynamically by drag and drop the grid column header to the group drop area. The initial grouping can be done by adding required column names in the `groupedColumns` of [`groupSettings`](http://help.syncfusion.com/api/angular/ejgrid#members:groupsettings-groupedcolumns) property.
[`Grouping`](https://help.syncfusion.com/angular/grid/grouping) can be enabled by setting the [`allowGrouping`](https://help.syncfusion.com/api/angular/ejgrid#members:allowgrouping) to `true`. Columns can be grouped dynamically by drag and drop the grid column header to the group drop area. The initial grouping can be done by adding required column names in the `groupedColumns` of [`groupSettings`](https://help.syncfusion.com/api/angular/ejgrid#members:groupsettings-groupedcolumns) property.


{% highlight html %}
Expand Down Expand Up @@ -249,7 +249,7 @@ export class AppComponent {

## Add Summaries

[`Summaries`](https://help.syncfusion.com/angular/grid/summary) can be added by setting the [`showSummary`](http://help.syncfusion.com/api/angular/ejgrid#members:showsummary) to true and adding required summary rows and columns in the [`summaryRows`](http://help.syncfusion.com/api/angular/ejgrid#members:summaryrows) property. For demonstration, Freight column's sum value is displayed as summary.
[`Summaries`](https://help.syncfusion.com/angular/grid/summary) can be added by setting the [`showSummary`](https://help.syncfusion.com/api/angular/ejgrid#members:showsummary) to true and adding required summary rows and columns in the [`summaryRows`](https://help.syncfusion.com/api/angular/ejgrid#members:summaryrows) property. For demonstration, Freight column's sum value is displayed as summary.

{% highlight html %}

Expand Down