diff --git a/aspnet-core/DataManager/Filtering.md b/aspnet-core/DataManager/Filtering.md index 5fcc7f84..c61a4c22 100644 --- a/aspnet-core/DataManager/Filtering.md +++ b/aspnet-core/DataManager/Filtering.md @@ -1,14 +1,14 @@ --- layout: post -title: Filtering | DataManager | ASP.NET Core | Syncfusion -description: filtering +title: Filtering in ASP.NET Core DataManager control | Syncfusion +description: Learn here more about Filtering support in Syncfusion Essential ASP.NET Core DataManager Control, its elements, and more. platform: aspnet-core control: DataManager documentation: ug keywords: filter Operators, lessThan, lessThanOrEqual, less, contains --- -# Filtering +# Filtering in ASP.NET Core DataManager Filtering is a basic technique in **DataManager** query. The “where” query is used to filter some particular or related records from the data source to review details of records. @@ -81,7 +81,7 @@ This operator is used to get the records with values less than that of the filte Result of the above code example is illustrated as follows. -![](Filtering_images/Filtering_img1.png) +![LessThan in ASP.NET Core DataManager](Filtering_images/Filtering_img1.png) ## greaterThan @@ -124,7 +124,7 @@ This operator is used to get the records with values greater than that of the fi Result of the above code example is illustrated as follows. -![](Filtering_images/Filtering_img2.png) +![GreaterThan in ASP.NET Core DataManager](Filtering_images/Filtering_img2.png) ## lessThanOrEqual @@ -167,7 +167,7 @@ This operator is used to get the records with values less than or equal to the f Result of the above code example is illustrated as follows. -![](Filtering_images/Filtering_img3.png) +![LessThanOrEqual in ASP.NET Core DataManager](Filtering_images/Filtering_img3.png) ## greaterThanOrEqual @@ -210,7 +210,7 @@ This operator is used to get the records with values greater than or equal to th Result of the above code example is illustrated as follows. -![](Filtering_images/Filtering_img4.png) +![GreaterThanOrEqual in ASP.NET Core DataManager](Filtering_images/Filtering_img4.png) ## equal @@ -253,7 +253,7 @@ This operator is used to get the records with values equal to that of the filter Result of the above code example is illustrated as follows. -![](Filtering_images/Filtering_img5.png) +![Equal in ASP.NET Core DataManager](Filtering_images/Filtering_img5.png) ## notEqual @@ -296,7 +296,7 @@ This operator is used to get the records with values not equal to that of the fi Result of the above code example is illustrated as follows. -![](Filtering_images/Filtering_img6.png) +![NotEqual in ASP.NET Core DataManager](Filtering_images/Filtering_img6.png) ## contains @@ -339,7 +339,7 @@ This operator is used to get the records that contains the filter value. Result of the above code example is illustrated as follows. -![](Filtering_images/Filtering_img7.png) +![Contains in ASP.NET Core DataManager](Filtering_images/Filtering_img7.png) ## startswith @@ -382,7 +382,7 @@ This operator is used to get the records that starts with the filter value speci Result of the above code example is illustrated as follows. -![](Filtering_images/Filtering_img8.png) +![Startswith ASP.NET Core DataManager](Filtering_images/Filtering_img8.png) ## endswith @@ -425,7 +425,7 @@ This operator is used to get the records that ends with the filter value specifi Result of the above code example is illustrated as follows. -![](Filtering_images/Filtering_img9.png) +![Endswith ASP.NET Core DataManager](Filtering_images/Filtering_img9.png) ## and predicate @@ -468,7 +468,7 @@ The `and` predicate is used to add n-number of predicates with “and” conditi Result of the above code example is illustrated as follows. -![](Filtering_images/Filtering_img10.png) +![And predicate ASP.NET Core DataManager](Filtering_images/Filtering_img10.png) ## or predicate @@ -511,7 +511,7 @@ Using this method you can add n-number of predicates with `or` condition and fil Result of the above code example is illustrated as follows. -![](Filtering_images/Filtering_img11.png) +![Or predicate ASP.NET Core DataManager](Filtering_images/Filtering_img11.png) ## Containment Operators @@ -562,7 +562,7 @@ This operator is used to get the records that not contains the filter value. {% endtabs %} -![](Filtering_images/Filtering_image12.png) +![Notcontains ASP.NET Core DataManager](Filtering_images/Filtering_image12.png) ### contains @@ -611,7 +611,7 @@ This operator is used to get the records that contains the filter value. {% endtabs %} -![](Filtering_images/Filtering_image111.png) +![Contains ASP.NET Core DataManager](Filtering_images/Filtering_image111.png) ### in @@ -660,7 +660,7 @@ This operator used to fetch the records with value match with the given filter v {% endtabs %} -![](Filtering_images/Filtering_image13.png) +![In ASP.NET Core DataManager](Filtering_images/Filtering_image13.png) ### notin @@ -709,9 +709,9 @@ This operator used to fetch the records with value not match with the given filt {% endtabs %} -![](Filtering_images/Filtering_image14.png) +![Notin ASP.NET Core DataManager](Filtering_images/Filtering_image14.png) -![](Filtering_images/Filtering_image15.png) +![Lambda Operators ASP.NET Core DataManager](Filtering_images/Filtering_image15.png) ## Lambda Operators @@ -773,7 +773,7 @@ The ALL operator returns true if all the sub query values meet the condition. Th {% endtabs %} -![](Filtering_images/Filtering_image16.png) +![Operators in ASP.NET Core DataManager](Filtering_images/Filtering_image16.png) ### any @@ -832,4 +832,4 @@ The ANY operator returns true if any of the sub query values meet the condition. {% endtabs %} -![](Filtering_images/Filtering_image17.png) \ No newline at end of file +![Field Records in ASP.NET Core DataManager](Filtering_images/Filtering_image17.png) \ No newline at end of file diff --git a/aspnet-core/DataManager/Overview.md b/aspnet-core/DataManager/Overview.md index f1bc7da8..0100cdfb 100644 --- a/aspnet-core/DataManager/Overview.md +++ b/aspnet-core/DataManager/Overview.md @@ -1,13 +1,13 @@ --- layout: post -title: Overview | DataManager | ASP.NET Core | Syncfusion -description: overview +title: Overview in ASP.NET Core DataManager control | Syncfusion +description: Learn here more about Overview in Syncfusion Essential ASP.NET Core DataManager Control, its elements, and more. platform: aspnet-core control: DataManager documentation: ug --- -# DataManager +# Overview in ASP.NET Core DataManager DataManager helps in managing relational data in the ASP.NET Core. Its rich features make querying data sources easier. The ODataClient supports OData queries that are enabled in the Web API & WCF data services. diff --git a/aspnet-core/GettingStarted/Getting-Started-VS2017.md b/aspnet-core/GettingStarted/Getting-Started-VS2017.md index a13b0edb..4251baa6 100644 --- a/aspnet-core/GettingStarted/Getting-Started-VS2017.md +++ b/aspnet-core/GettingStarted/Getting-Started-VS2017.md @@ -1,14 +1,14 @@ --- layout: post -title: Getting Started | ASP.NET Core | Syncfusion -description: Getting Started. +title: Getting Started with ASP.NET Core Platform | Syncfusion +description: Learn here more about Getting Started with Syncfusion Essential ASP.NET Core Application, its elements, and more. platform: aspnet-core control: Common documentation: ug --- -# Getting Started +# Getting Started with ASP.NET Core Application ## ASP.NET Core 1.1 Application Using Visual Studio 2017 diff --git a/aspnet-core/Grid/Overview.md b/aspnet-core/Grid/Overview.md index 16064547..d2b5e5f7 100644 --- a/aspnet-core/Grid/Overview.md +++ b/aspnet-core/Grid/Overview.md @@ -1,12 +1,12 @@ --- layout: post -title: grid widget for Syncfusion Essential ASP.NET Core -description: Overview for grid +title: Grid widget for Syncfusion Essential ASP.NET Core +description: Learn here more about Overview in Syncfusion Essential ASP.NET Core Grid Control, its elements, and more. platform: aspnet-core control: grid documentation: ug --- -# OverView +# OverView in ASP.NET Core Grid The grid control for ASP.NET Core is an efficient display engine for tabular data. It will pull from a datasource, such as List of collections, OData web services, or DataManager and binding data fields to columns and displaying a column header to identify the field. It is a feature-rich control that provides extensive appearance customization options with support for grouped records. This grid is very useful for generating complex grid-based reports with rich formatting. Almost all the features in JS grid are applicable to grid in ASP.NET Core too. diff --git a/aspnet-core/PdfViewer/Getting-Started.md b/aspnet-core/PdfViewer/Getting-Started.md index 0bb3b1ea..3f1c5ee1 100644 --- a/aspnet-core/PdfViewer/Getting-Started.md +++ b/aspnet-core/PdfViewer/Getting-Started.md @@ -1,7 +1,7 @@ --- layout: post -title: Getting-Started -description: getting started +title: Getting Started with ASP.NET Core PdfViewer control | Syncfusion +description: Learn here more about Getting Started with Syncfusion Essential ASP.NET Core PdfViewer, its elements, and more. platform: aspnet-core control: PdfViewer documentation: ug diff --git a/aspnet-core/ReportViewer/Report-Controller.md b/aspnet-core/ReportViewer/Report-Controller.md index b07049b0..93c70fbd 100644 --- a/aspnet-core/ReportViewer/Report-Controller.md +++ b/aspnet-core/ReportViewer/Report-Controller.md @@ -1,13 +1,13 @@ --- layout: post -title: Report Controller | Syncfusion -description: report controller +title: Report Controller in ASP.NET Core ReportViewer control | Syncfusion +description: Learn here more about report controller support in Syncfusion Essential ASP.NET Core ReportViewer Control, its elements, and more. platform: aspnet-core control: ReportViewer documentation: ug --- -# Report Controller +# Report Controller in ASP.NET Core ReportViewer The ReportViewer uses Web API services to process the report file, process the request from control and to return the processed data to control. The Syncfusion.EJ.ReportViewer assembly has helper APIs to define the service actions and process the service requests. diff --git a/aspnet-core/ReportViewer/SSRS-Configuration.md b/aspnet-core/ReportViewer/SSRS-Configuration.md index 5d89ab1f..e0e340fd 100644 --- a/aspnet-core/ReportViewer/SSRS-Configuration.md +++ b/aspnet-core/ReportViewer/SSRS-Configuration.md @@ -1,13 +1,13 @@ --- layout: post -title: SSRS Configuration | Syncfusion -description: ssrs configuration +title: SSRS Configuration in ASP.NET Core ReportViewer control | Syncfusion +description: Learn here more about ssrs configuration support in Syncfusion Essential ASP.NET Core ReportViewer Control, its elements, and more. platform: aspnet-core control: ReportViewer documentation: ug --- -# SSRS Configuration +# SSRS Configuration in ASP.NET Core ReportViewer The ReportViewer has support to load RDL reports from SSRS server. You have to set your SSRS server URL to ReportViewer’s ReportServiceUrl property and set the relative path of RDL file in SSRS to ReportViewer’s ReportPath property. diff --git a/aspnet-core/Tab/Overview.md b/aspnet-core/Tab/Overview.md index df92dc47..dfb108f0 100644 --- a/aspnet-core/Tab/Overview.md +++ b/aspnet-core/Tab/Overview.md @@ -1,13 +1,13 @@ --- layout: post -title: Overview | Tab | ASP.NET Core | Syncfusion -description: overview +title: Overview in ASP.NET Core Tab control | Syncfusion +description: Learn here more about Overview in Syncfusion Essential ASP.NET Core Tab Control, its elements, and more. platform: aspnet-core control: Tab documentation: ug --- -# Tab +# Overview in ASP.NET Core Tab The tab control is an interface where the list of items are expanded from a single item. Each tab panel defines its header text or header template, as well as a content template. The tab items can be dynamically added and removed. It is loaded with AJAX content useful for building dashboards where space is limited.