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
6 changes: 3 additions & 3 deletions aspnetmvc/ColorPicker/Knockout-Binding.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
layout: post
title: Knockout Binding | ColorPicker | ASP.NET MVC | Syncfusion
description: knockout binding
description: Learn here about knockout binding in Syncfusion Essential ASP.NET MVC ColorPicker Control, its elements, and more.
platform: ejmvc
control: ColorPicker
documentation: ug
---

# KnockoutJS Binding
# KnockoutJS Binding in ASP.NET MVC ColorPicker

KnockoutJS support allows you to bind the HTML elements against any of the available data models.

Expand Down Expand Up @@ -127,7 +127,7 @@ The following screenshot displays the output of the above code example.



![](Knockout-Binding_images/Knockout-Binding_img1.png)
![ASP.NET MVC ColorPicker KnockoutJS Support](Knockout-Binding_images/Knockout-Binding_img1.png)

ColorPicker with KnockoutJS Support
{:.caption}
20 changes: 10 additions & 10 deletions aspnetmvc/Gantt/Customizations.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
layout: post
title: Customization| Gantt | ASP.NET MVC | Syncfusion
description: Customization
description: Learn here about Customization in Syncfusion Essential ASP.NET MVC Gantt Control, its elements, and more.
platform: ejmvc
control: Gantt
documentation: ug
---

# Customizations
# Customizations in ASP.NET MVC Gantt

Gantt provides support for the following UI customizations,

Expand Down Expand Up @@ -64,7 +64,7 @@ The DOM structure and class names mentioned in the above code snippet is mandato

The following screenshot shows the template for taskbars in Gantt.

![](Customization_images/Customization_img1.png)
![ASP.NET MVC Gantt customization](Customization_images/Customization_img1.png)

## Task label template

Expand All @@ -89,7 +89,7 @@ The following code example explains how to set task name field as right label an

The following screenshot shows Gantt with task labels mapped with different data source fields

![](Customization_images/Customization_img4.png)
![ASP.NET MVC Gantt mapping data](Customization_images/Customization_img4.png)

### Task label templates

Expand Down Expand Up @@ -126,7 +126,7 @@ You can find the online demo sample for task label templates in Gantt [here](htt

The following screenshot shows Gantt with task label templates.

![](Customization_images/Customization_img2.png)
![ASP.NET MVC Gantt tooltip template](Customization_images/Customization_img2.png)

## Tooltip template

Expand Down Expand Up @@ -169,7 +169,7 @@ The following code example shows how to customize the tooltip.

The following screenshot shows Gantt with task tooltip customization.

![](Customization_images/Customization_img3.png)
![ASP.NET MVC Gantt taskbar tooltip](Customization_images/Customization_img3.png)

### Dependency tooltip

Expand Down Expand Up @@ -218,7 +218,7 @@ The default dependency tooltip in Gantt can be customized by using `PredecessorT
{% endhighlight %}

The following screenshot show the output of above code example.
![](Customization_images/Customization_img8.png)
![ASP.NET MVC Gantt dependency tooltip](Customization_images/Customization_img8.png)

### Cell tooltip

Expand Down Expand Up @@ -265,7 +265,7 @@ TreeGrid part tooltip can also be customized using `CellTooltipTemplate` propert

{% endhighlight %}

![](Customization_images/Customization_img5.png)
![ASP.NET MVC Gantt cell tooltip](Customization_images/Customization_img5.png)

You can find the online demo sample for tooltip templates for taskbars [here](https://mvc.syncfusion.com/demos/web/gantt/gantttooltiptemplate)

Expand Down Expand Up @@ -324,7 +324,7 @@ Taskbar editing tooltip can be customized by using `TaskbarEditingTooltipTemplat
{% endhighlight %}

The below screenshot shows the output of above code example.
![](Customization_images/Customization_img6.png)
![ASP.NET MVC Gantt customize taskbar](Customization_images/Customization_img6.png)

#### Customize progress bar editing tooltip

Expand Down Expand Up @@ -353,5 +353,5 @@ Progress bar editing tooltip can be customized by using `ProgressbarTooltipTempl
{% endhighlight %}

The below screenshot shows the output of above code example.
![](Customization_images/Customization_img7.png)
![ASP.NET MVC Gantt progress bar](Customization_images/Customization_img7.png)

4 changes: 2 additions & 2 deletions aspnetmvc/PivotGrid/Format-String.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
layout: post
title: Format String | PivotGrid | ASP.NET MVC | Syncfusion
description: format string
description: Learn here about format string in Syncfusion Essential ASP.NET MVC PivotGrid Control, its elements, and more.
platform: ejmvc
control: PivotGrid
documentation: ug
---

### Format Strings
# Format Strings in ASP.NET MVC PivotGrid

I> This feature is applicable only for Relational data source at Client Mode.

Expand Down
26 changes: 13 additions & 13 deletions aspnetmvc/TreeGrid/Filtering.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
layout: post
title: Filtering | TreeGrid | ASP.NET MVC | Syncfusion
description: filtering
description: Learn here about filtering in Syncfusion Essential ASP.NET MVC TreeGrid Control, its elements, and more.
platform: ejmvc
control: TreeGrid
documentation: ug
---

# Filtering
# Filtering in ASP.NET MVC TreeGrid

Filtering helps to view specific or related records from data source which meets a given filtering criteria. To enable filtering in TreeGrid, set the `AllowFiltering` as `true`.
The `FilterSettings` property is used to customize the filtering in TreeGrid.
Expand Down Expand Up @@ -39,7 +39,7 @@ The below code explains how to enable filtering in TreeGrid.

The output of the TreeGrid with filtering enabled is as follows.

![](Filtering_images/Filtering_img1.png)
![ASP.NET MVC TreeGrid filter mode](Filtering_images/Filtering_img1.png)

The TreeGrid allows the user to filter the columns with custom actions by using the method [`filterColumn`](https://help.syncfusion.com/api/js/ejtreegrid#methods:filtercolumn "filterColumn"). And it is possible to clear the filter for a specific column by using the method [`clearFilter`](https://help.syncfusion.com/api/js/ejtreegrid#methods:clearfilter "clearFilter").

Expand Down Expand Up @@ -73,7 +73,7 @@ The below code snippet explains the above behavior.

The output of the filtering with filter bar enabled is as follows.

![](Filtering_images/Filtering_img2.png)
![ASP.NET MVC TreeGrid filter bar](Filtering_images/Filtering_img2.png)

### Menu filtering

Expand All @@ -94,7 +94,7 @@ Menu filtering can be enabled by setting the `FilterSettings.FilterType` propert

The output of the filtering with filter menu enabled is as follows.

![](Filtering_images/Filtering_img3.png)
![ASP.NET MVC TreeGrid menu filtering](Filtering_images/Filtering_img3.png)

### Excel Filtering

Expand All @@ -116,7 +116,7 @@ The below code snippet explains how to enable excel filtering in TreeGrid.

The output of the filtering with excel filter enabled is as follows.

![](Filtering_images/Filtering_img5.png)
![ASP.NET MVC TreeGrid excl filter](Filtering_images/Filtering_img5.png)

#### Checkbox list generation

Expand All @@ -138,7 +138,7 @@ The below code snippet explains how to change the max filter choices value.

{% endhighlight %}

![](Filtering_images/Filtering_img6.png)
![ASP.NET MVC TreeGrid checkbox list](Filtering_images/Filtering_img6.png)

The above screen shot shows TreeGrid with `MaxFilterChoices` as 5.

Expand All @@ -161,7 +161,7 @@ The below code snippet explains how to enable the case sensitivity in excel filt

{% endhighlight %}

![](Filtering_images/Filtering_img7.png)
![ASP.NET MVC TreeGrid case sensitive](Filtering_images/Filtering_img7.png)

The above screen shot shows TreeGrid with `EnableCaseSensitivity` set as false in search action.

Expand All @@ -188,7 +188,7 @@ The following code example show, how to change filter mode for specific column.

{% endhighlight %}

![](Filtering_images/Filtering_img10.png)
![ASP.NET MVC TreeGrid change filter](Filtering_images/Filtering_img10.png)

The above screen shot shows TreeGrid with excel filter mode for `Task Name` column only.

Expand Down Expand Up @@ -231,7 +231,7 @@ In TreeGrid, it is possible to filter the null or empty string value in drop dow

{% endhighlight %}

![](Filtering_images/Filtering_img9.png)
![ASP.NET MVC TreeGrid filtering blank value](Filtering_images/Filtering_img9.png)

The above screenshot shows TreeGrid with filtering blank content.
{:.caption}
Expand Down Expand Up @@ -259,7 +259,7 @@ The following code example shows how to set filter mode in TreeGrid.

{% endhighlight %}

![](Filtering_images/filterHierarchyMode.png)
![ASP.NET MVC TreeGrid filter hierarchy mode](Filtering_images/filterHierarchyMode.png)

The above screenshot shows TreeGrid filter with `Child` filter mode.

Expand Down Expand Up @@ -301,7 +301,7 @@ The below code snippet explains the above behavior.

The output of the filtering enabled for only one column is as follows.

![](Filtering_images/Filtering_img4.png)
![ASP.NET MVC TreeGrid disable filter](Filtering_images/Filtering_img4.png)

[Click](https://mvc.syncfusion.com/demos/web/treegrid/treegridcolumnfiltering) to find the demo sample for filtering in TreeGrid

Expand All @@ -327,7 +327,7 @@ The following code example explains how to integrate search text box in toolbar.

{% endhighlight %}

![](Filtering_images/Filtering_img8.png)
![ASP.NET MVC TreeGrid toolbox](Filtering_images/Filtering_img8.png)

The above screen shot shows TreeGrid search with **Plan** key word.

Expand Down