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
8 changes: 4 additions & 4 deletions aspnet/DataManager/corsdatafetching.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
---
layout: post
title: CORS Data Fetching | DataManager | ASP.NET Webforms | Syncfusion
description: CORS Data Fetching
description: Learn here about CORS Data Fetching in Syncfusion Essential ASP.NET Webforms DataManager Control, its elements, and more.
platform: aspnet
control: DataManager
documentation: ug
keywords: CORS Data Fetching, SAME-ORIGIN POLICY, Access-Control-Allow-Origin, Access-Control-Request-Method, Access-Control-Request-Headers

---
# CORS Data Fetching
# CORS Data Fetching in ASP.NET Webforms DataManager

The Cross-Origin Resource Sharing (CORS) mechanism enable secure cross-domain data transfers.

## SAME-ORIGIN POLICY

This policy defined the rule for, “how a web page can be accessed by an external resource”. Browsers wont permits a request to access the resources who origin is differ than the current page. To overcome the restriction of same-origin policy, we can use a technique called Cross-origin resource sharing.

![](CORS_images/SAME-ORIGIN1.png)
![ASP.NET Webforms DataManager CORS](CORS_images/SAME-ORIGIN1.png)

## Access-Control-Allow-Origin

Expand Down Expand Up @@ -75,4 +75,4 @@ This header is used when issuing a preflight request to let the server know what

{% endhighlight %}

[For more details, please refer to this link:](https://developer.mozilla.org/en-US/docs/Web/HTTP/Access_control_CORS#Access-Control-Allow-Headers)
[For more details, please refer to this link:](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS#access-control-allow-headers)
10 changes: 5 additions & 5 deletions aspnet/Grid/Localization.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
layout: post
title: Localization with Grid widget for Syncfusion Essential ASP.NET
description: How to use globalization and localization
description: How to use globalization and localization in Syncfusion Essential ASP.NET Web Forms Grid Control, its elements, and more.
platform: aspnet
control: Grid
documentation: ug
Expand Down Expand Up @@ -452,7 +452,7 @@ The Grid and Pager has its own locale labels for applying the information about

The output for the above code example is displayed as the following screenshot.

![](Localization_images/Localization_img1.png)
![ASPNET Grid Localization](Localization_images/Localization_img1.png)



Expand Down Expand Up @@ -804,7 +804,7 @@ ej.ExcelFilter.Locale["de-DE"] = {

{% endtabs %}

![](Localization_images/Localization_img2.png)
![ASPNET Grid Globalization](Localization_images/Localization_img2.png)

I> We have uploaded the predefined language packs for some commonly used cultures in [`this`](https://github.com/syncfusion/ej-global/tree/master/l10n) github location. Refer to the github location for getting the predefined language packs for the corresponding culture. The culture file has localized texts for all the Syncfusion controls.

Expand Down Expand Up @@ -952,7 +952,7 @@ public partial class Localization : System.Web.UI.Page
{% endtabs %}


![](Localization_images/Localization_img3.png)
![ASPNET Grid RTL](Localization_images/Localization_img3.png)

I> To translate our control content from default English to any of the culture, say For example - German language, then you need to refer the **ej.culture.de-DE.min.js** file in your application, after the reference of ej.web.all.min.js file. For all culture files, please download from the [GitHub](https://github.com/syncfusion/ej-global/tree/master/i18n) location.

Expand Down Expand Up @@ -1101,7 +1101,7 @@ public partial class Localization : System.Web.UI.Page



![](Localization_images/Localization_img4.png)
![ASPNET Grid local filter](Localization_images/Localization_img4.png)



Expand Down
28 changes: 14 additions & 14 deletions aspnet/Listbox/Databinding.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
layout: post
title: Data binding | ListBox | ASP.NET Webforms | Syncfusion
description: data-binding
description: Learn here about data binding support in Syncfusion Essential ASP.NET Webforms ListBox Control, its elements, and more.
platform: aspnet
control: ListBox
documentation: ug
---

# Data Binding
# Data Binding in ASP.NET Webforms ListBox

The ListBox is populated with the node information taken from a data source. The ListBox supports binding data sources containing Object data, Remote data, XML Data, SQL Data and LINQ-to-SQL Data.

Expand Down Expand Up @@ -152,7 +152,7 @@ listBoxSample.DataSource = GetData();
{% endhighlight %}
{% endtabs %}

![](Databinding_images/Databinding_img1.png)
![ASP.NET Webforms ListBox Object Data](Databinding_images/Databinding_img1.png)

## Remote data

Expand Down Expand Up @@ -193,7 +193,7 @@ listBoxSample.DataSource = "http://mvc.syncfusion.com/Services/Northwnd.svc/";

{% endtabs %}

![](Databinding_images/Databinding_img2.png)
![ASP.NET Webforms ListBox Remote data](Databinding_images/Databinding_img2.png)


## SQL Data
Expand All @@ -202,7 +202,7 @@ ListBox provides extensive data binding support to populate ListBox nodes. There

Define an SQL data source in the web page and configure the data source as per your requirement. The following screenshot illustrates the sample database used.

![](Databinding_images/Databinding_img3.png)
![ASP.NET Webforms ListBox SQL Data](Databinding_images/Databinding_img3.png)

In the Design page, assign the values for DataTextField, DataValueField. In DataSourceID field assign the ID of the existing SQL data source.

Expand All @@ -217,7 +217,7 @@ In the Design page, assign the values for DataTextField, DataValueField. In Data

{% endhighlight %}

![](Databinding_images/Databinding_img4.png)
![ASP.NET Webforms ListBox LINQ to SQL Data](Databinding_images/Databinding_img4.png)


## LINQ-to-SQL Data
Expand All @@ -228,7 +228,7 @@ Define a LINQ-to-SQL data source in the web page and configure the data source a

The following screenshot illustrates the sample database used.

![](Databinding_images/Databinding_img5.jpeg)
![ASP.NET Webforms ListBox](Databinding_images/Databinding_img5.jpeg)

In the Design page, assign values for DataTextField, DataValueField. In DataSourceID field assign the ID of the existing LINQ-to-SQL data source.

Expand All @@ -246,7 +246,7 @@ In the Design page, assign values for DataTextField, DataValueField. In DataSour

Output of the above steps

![](Databinding_images/Databinding_img6.png)
![ASP.NET Webforms ListBox XML Data](Databinding_images/Databinding_img6.png)

## XML Data

Expand Down Expand Up @@ -381,7 +381,7 @@ Create a new XML file in App_Data folder as ‘ListBoxXml.xml’ and add the fol
{% endhighlight %}


![](Databinding_images/Databinding_img7.png)
![ASP.NET Webforms ListBox Virtual Scrolling](Databinding_images/Databinding_img7.png)

## Virtual Scrolling

Expand Down Expand Up @@ -423,9 +423,9 @@ protected void Page_Load(object sender, EventArgs e)
{% endhighlight %}
{% endtabs %}

![](Databinding_images/Databinding_img8.png)
![ASP.NET Webforms ListBox Normal Scrolling](Databinding_images/Databinding_img8.png)

![](Databinding_images/Databinding_img9.png)
![ASP.NET Webforms ListBox Normal Scrolling method](Databinding_images/Databinding_img9.png)

### Continuous Scrolling

Expand Down Expand Up @@ -461,9 +461,9 @@ protected void Page_Load(object sender, EventArgs e)

N> The “ItemRequestCount” property will work only when “VirtualScrollMode” is “Continuous”.

![](Databinding_images/Databinding_img10.png)
![ASP.NET Webforms ListBox ItemRequestCount](Databinding_images/Databinding_img10.png)

![](Databinding_images/Databinding_img11.png)
![ASP.NET Webforms ListBox VirtualScrollMode](Databinding_images/Databinding_img11.png)

### Handling errors

Expand Down Expand Up @@ -497,4 +497,4 @@ In remote binding, the server might not return data sometimes due to various rea
{% endhighlight %}
{% endtabs %}

![](Databinding_images/Databinding_img12.png)
![ASP.NET Webforms ListBox Handling errors](Databinding_images/Databinding_img12.png)
20 changes: 10 additions & 10 deletions aspnet/Maps/Map-Elements.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
layout: post
title: Map Elements | Maps | ASP.NET Webforms | Syncfusion
description: map elements
description: Learn here about map elements in Syncfusion Essential ASP.NET WebForms Maps Control, its elements, and more.
platform: aspnet
control: Maps
documentation: ug
---

# Map Elements
# Map Elements in ASP.NET WebForms Maps

Map control contains a set of map elements, including shapes, bubbles, markers, legend, labels and data items that can be visualized with customized appearance showing additional information on the map using bound data.

Expand Down Expand Up @@ -91,7 +91,7 @@ The Markers property has a list of objects that contains the data for Annotation

{% endtabs %}

![](Map-Elements_images/Map-Elements_img1.png)
![ASP.NET WebForms Maps Map Elements](Map-Elements_images/Map-Elements_img1.png)

Map with markers
{:.caption}
Expand Down Expand Up @@ -152,7 +152,7 @@ Without Datasource, n number of markers can be added to shape layers with Marker



![](Map-Elements_images/Map-Elements_img2.png)
![ASP.NET WebForms Maps with label](Map-Elements_images/Map-Elements_img2.png)

Map with label
{:.caption}
Expand Down Expand Up @@ -257,7 +257,7 @@ N> Tooltip and Color Mappings for bubble is to be set as similar to tooltip and



![](Map-Elements_images/Map-Elements_img3.png)
![ASP.NET WebForms Maps elements](Map-Elements_images/Map-Elements_img3.png)

Map with bubbles
{:.caption}
Expand Down Expand Up @@ -301,7 +301,7 @@ N> While settings color for bubbles by using `ColorPath`, do not set any other c
{% endhighlight %}


![](Map-Elements_images/Map-Elements_img7.png)
![ASP.NET WebForms Maps bubbles](Map-Elements_images/Map-Elements_img7.png)

While binding `ColorPath` for bubbles, it is possible to render the legend for each bubble. To achieve this, set the `TextPath` for legend. `TextPath` contains another field name in the datasource. As per the text, content in the field legend will be generated.

Expand Down Expand Up @@ -342,7 +342,7 @@ While binding `ColorPath` for bubbles, it is possible to render the legend for e

{% endhighlight %}

![](Map-Elements_images/Map-Elements_img8.png)
![ASP.NET WebForms Maps Elements](Map-Elements_images/Map-Elements_img8.png)


## Legend
Expand Down Expand Up @@ -422,7 +422,7 @@ N> Here, Equal Color Mapping code sample for shapeSettings with color mappings



![](Map-Elements_images/Map-Elements_img4.png)
![ASP.NET WebForms Maps with legend](Map-Elements_images/Map-Elements_img4.png)

Map with legend
{:.caption}
Expand Down Expand Up @@ -469,7 +469,7 @@ N> Here, Range Color Mapping code snippet for shapeSettings with color mappings



![](Map-Elements_images/Map-Elements_img5.png)
![ASP.NET WebForms Maps with interactive legend](Map-Elements_images/Map-Elements_img5.png)

Map with interactive legend
{:.caption}
Expand Down Expand Up @@ -531,7 +531,7 @@ A bubble legend feature is used to provide the key (legend) for another map elem

{% endhighlight %}

![](Map-Elements_images/Map-Elements_img6.png)
![ASP.NET WebForms Maps Bubble Legend](Map-Elements_images/Map-Elements_img6.png)

Bubble Legend
{:.caption}
Binary file modified aspnet/Maps/Map-Elements_images/Map-Elements_img8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions aspnet/Schedule/Data-binding.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
title: Data binding with Schedule
title: Data binding support in ASP.NET Web Forms Schedule Control| Syncfusion
description: Databinding is used to show the different binding of adaptor section using Syncfusion ASP.NET Web Forms Schedule component.
platform: aspnet
control: schedule
documentation: ug
keywords: data binding, local data, remote data
---
# Data Binding
# Data Binding support in ASP.NET Web Forms Schedule

## Appointment Fields

Expand Down
4 changes: 2 additions & 2 deletions aspnet/Schedule/how-to.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
title: How-to
title: How to Section in ASP.NET Web Forms Schedule Control | Syncfusion
description: The how to section explain more functionalities or informations about Syncfusion ASP.NET Web Forms Schedule control.
platform: aspnet
control: Schedule
documentation: ug
keywords: globalize, localize, localization, globalization
---
# How To
# How to Section in ASP.NET Web Forms Schedule

## Validate the Custom Appointment Window Fields

Expand Down