Skip to content
Open
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
24 changes: 12 additions & 12 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node('content')
node('GithubContent')
{
timestamps
{
Expand All @@ -18,9 +18,9 @@ String platform='Windows Forms';
checkout scm


def page = 1
while(true)
{
def page = 1
while(true)
{
def branchCommit = 'https://api.github.com/repos/syncfusion-content/'+env.githubSourceRepoHttpUrl.split('/')[env.githubSourceRepoHttpUrl.split('/').size() - 1]+'/pulls/' + env.pullRequestId + '/files?per_page=100^&page='+ page
String branchCommitDetails = bat returnStdout: true, script: 'curl -H "Accept: application/vnd.github.v3+json" -u SyncfusionBuild:' + env.GithubBuildAutomation_PrivateToken + " " + branchCommit

Expand All @@ -30,14 +30,14 @@ String platform='Windows Forms';
{
def ChangeFile= ChangeFiles[i].split(',')[0].replace('"', '')
Content += env.WORKSPACE + "\\Spell-Checker\\" + ChangeFile + "\r\n";
}
// Last page
if((ChangeFiles.size() - 1) < 100)
{
break
}
page++
}

// Last page
if((ChangeFiles.size() - 1) < 100)
{
break
}
page++
}

if (Content) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ A demo of this feature is available in the following location:

_<Install Location>\Syncfusion\EssentialStudio\[Version Number]\Windows\Grid.Grouping.Windows\Samples\Selection\Record Range Selection Demo_

## Adding navigation Bar to the RecordNavigationControl
## Adding navigation Bar to the GridRecordNavigationControl

Follow the steps to add navigation bar:

Expand Down
4 changes: 2 additions & 2 deletions WindowsForms/GridRecordNavigationControl/Getting-Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ You can drag both Grid Record Navigation control and Grid control (either Grid c

![Grid-Record-Navigation-Control_images3](Creating-Grid-Record-Navigation-Control_images/Creating-Grid-Record-Navigation-Control_img3.jpeg)

5. Run the application. A GridRecordNavigation control will be created.
5. Run the application. A GridRecordNavigationControl will be created.

![Grid-Record-Navigation-Control_images4](Creating-Grid-Record-Navigation-Control_images/Creating-Grid-Record-Navigation-Control_img4.jpeg)

### Through code

Here is some minimal code necessary to create the GridRecordNavigation control.
Here is some minimal code necessary to create the GridRecordNavigationControl.

{% tabs %}
{% highlight c# %}
Expand Down
2 changes: 1 addition & 1 deletion WindowsForms/GridRecordNavigationControl/Overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ documentation: ug

# About Syncfusion® Windows Forms GridRecordNavigationControl

The GridRecordNavigation control allows you to navigate between records by using the Microsoft Access-like navigation bar at the bottom of the grid. It provides built-in support to navigate between the first, last, previous, and next record.
The GridRecordNavigationControl allows you to navigate between records by using the Microsoft Access-like navigation bar at the bottom of the grid. It provides built-in support to navigate between the first, last, previous, and next record.

## Key features

Expand Down
2 changes: 1 addition & 1 deletion WindowsForms/GridRecordNavigationControl/Style.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ documentation: ug

# Style in Windows Forms GridRecordNavigationControl

The RecordNavigationControl supports Visual Styles like Default, Metro, and Office2016 by using the Style property.
The GridRecordNavigationControl supports Visual Styles like Default, Metro, and Office2016 by using the Style property.

{% tabs %}
{% highlight c# %}
Expand Down
4 changes: 2 additions & 2 deletions WindowsForms/Grouping/Data-Binding.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,10 +216,10 @@ End Sub

## Setting a Datasource In the Grouping Engine

Add the following grouping namespace for referring the assemblies deployed in the application.
Add the following Grouping namespace for referring the assemblies deployed in the application.


Refer Deploying Essential<sup>®</sup> Grouping section to know about deploying Essential<sup>®</sup> Grouping.
Refer to the Deploying Essential<sup>®</sup> Grouping section for details on deployment.

{% tabs %}
{% highlight c# %}
Expand Down
6 changes: 3 additions & 3 deletions WindowsForms/Grouping/Getting-Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ This section illustrates the step-by-step procedure to create the following plat

1. Open Microsoft Visual Studio. Go to File menu and click New Project. In the New Project dialog, select Windows Forms Application template, name the project and click OK.

![WindowsForms Grouping Creating a Windows Application](Getting-Started_images/Getting-Started_img1.jpeg)
![Creating a Windows Application](Getting-Started_images/Getting-Started_img1.jpeg)



Expand All @@ -41,7 +41,7 @@ To know how to deploy a web application, refer the _ASP.NET Behind the scenes_ s



![WindowsForms Grouping Creating an ASP.NET Application](Getting-Started_images/Getting-Started_img2.jpeg)
![Creating an ASP.NET Application](Getting-Started_images/Getting-Started_img2.jpeg)



Expand All @@ -64,7 +64,7 @@ To know how to deploy a web application, refer the _ASP.NET Behind the scenes_ s

For More Information Refer:

[Deploying Essential<sup>®</sup> Grouping](#deploying-essential-grouping)
[Deploying](#deploying-essential-Grouping)

## Deploying Essential<sup>®</sup> Grouping

Expand Down
2 changes: 1 addition & 1 deletion WindowsForms/Grouping/Overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Essential<sup>®</sup> Grouping is a 100% Native .NET library that provides you

Syncfusion<sup>®</sup> Essential<sup>®</sup> Grouping is a data technology that allows you to easily access, manipulate, and display your data in a variety of configurations. Your data source can be any IList object whose items have public properties. You can easily sort the items on one or several of these public properties. You can display and retrieve items based on the grouping that is produced through these sorts, you can include caption information and / or summary information on these groups; you can impose filters on the items, retrieving only items that specify your filter conditions and you can also add expression properties to display calculated values depending upon other properties in the item.

![windows forms grouping showing calculate the values](Overview_images/Overview_img1.jpeg)
![showing calculate the values](Overview_images/Overview_img1.jpeg)

## Key Features

Expand Down
2 changes: 1 addition & 1 deletion WindowsForms/MultiColumn-ListBox/ComboBoxBase-Feature.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ documentation: ug

# ComboBoxBase in Windows Forms MultiColumn ListBox

The GridList control can be coupled to the ComboBoxBase control by using the ListControl property of ComboBoxBase class. ComboBoxBase is an advanced control provided by Syncfusion that essentially separates edit portion from drop-down portion making. It displays the GridList control as a dropdown i.e. user can drop the GridList control in the drop-down area to get a multi-column drop-down effect.
The MultiColumn ListBox can be coupled to the ComboBoxBase control by using the ListControl property of ComboBoxBase class. ComboBoxBase is an advanced control provided by Syncfusion that essentially separates edit portion from drop-down portion making. It displays the MultiColumn ListBox as a dropdown i.e. user can drop the control in the drop-down area to get a multi-column drop-down effect.

{% tabs %}
{% highlight c# %}
Expand Down
4 changes: 2 additions & 2 deletions WindowsForms/MultiColumn-ListBox/Customizing-List-control.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ documentation: ug

# Customizing List control in Windows Forms MultiColumn ListBox

Appearance of the GridList control can be customized by using the following properties:
Appearance of the MultiColumn ListBox can be customized by using the following properties:

* TransparentBackground: Sets a transparent background for grid cells. If its value is set to true, no background color will be displayed. If its value is set to false, the background will be filled with the chosen color. The value is false by default. Refer to the BackColor property for setting the required background color.

Expand Down Expand Up @@ -79,7 +79,7 @@ Me.gridListControl1.Grid.Properties.GridLineColor = Color.Blue

![Grid Line Color in WinForms MultiColumn ListBox](Customizing-List-control_images/Customizing-List-control_img5.jpeg)

* BackColor: Allows you to specify the background color for the GridList control. It is mandatory to set the TransparentBackground to false.
* BackColor: Allows you to specify the background color for the MultiColumn ListBox. It is mandatory to set the TransparentBackground to false.

{% capture codesnippet5 %}
{% tabs %}
Expand Down
2 changes: 1 addition & 1 deletion WindowsForms/MultiColumn-ListBox/Data-Binding.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ documentation: ug

## Data Binding

Data binding used in the web pages that contain interactive components such as forms, calculators, tutorials, and games. Pages are displayed incrementally so that portions of a page can be used even before the entire page has finished downloading. Data binding helps in populating the GridList control with large amounts of data by using the DataSource property that allows the system to acquire data from the Data Source Object (DSO).
Data binding used in the web pages that contain interactive components such as forms, calculators, tutorials, and games. Pages are displayed incrementally so that portions of a page can be used even before the entire page has finished downloading. Data binding helps in populating the MultiColumn ListBox with large amounts of data by using the DataSource property that allows the system to acquire data from the Data Source Object (DSO).

{% tabs %}
{% highlight c# %}
Expand Down
16 changes: 8 additions & 8 deletions WindowsForms/MultiColumn-ListBox/Getting-Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This section explains creating a simple application with [WinForms MultiColumn L
## Assembly Deployment
Refer [control dependencies](https://help.syncfusion.com/windowsforms/control-dependencies#gridlistcontrol) section to get the list of assemblies or NuGet package needs to be added as reference to use the control in any application.

The following assemblies should be added as reference to use the GridListControl in any application.
The following assemblies should be added as reference to use the MultiColumn ListBox in any application.

<table>
<tr>
Expand All @@ -24,16 +24,16 @@ Description<br/><br/></th></tr>
<tr>
<td>
{{'[Syncfusion.Grid.Windows](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Grid.html)'| markdownify }}<br/><br/></td><td>
Contains classes that handles all UI operations, fundamentals, and base classes of the GridListControl.<br/><br/></td></tr>
Contains classes that handles all UI operations, fundamentals, and base classes of the MultiColumn ListBox.<br/><br/></td></tr>
<tr>
<td>
{{'[Syncfusion.Shared.Base](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.html)'| markdownify }}<br/><br/></td><td>
Contains the style related properties and various editor controls used in the GridListControl.<br/><br/></td></tr>
Contains the style related properties and various editor controls used in the MultiColumn ListBox.<br/><br/></td></tr>
</table>

## Creating application with GridListControl
## Creating application with MultiColumn ListBox

This section provides step-by-step procedure to create a GridList control through designer and programmatic approach in a .NET application.
This section provides step-by-step procedure to create a MultiColumn ListBox through designer and programmatic approach in a .NET application.

### Through designer

Expand All @@ -56,7 +56,7 @@ Drag the control onto the form, size it and set the desired properties if the da
![Drag the GridListControl Object from Toolbox](Creating-Grid-List-Control_images/Creating-Grid-List-Control_img4.jpeg)

5. Size and position it.
6. Go to the Properties dialog of this GridList control and set the DataSource property of this control to an appropriate object.
6. Go to the Properties dialog of this MultiColumn ListBox and set the DataSource property of this control to an appropriate object.

![set the DataSource property](Creating-Grid-List-Control_images/Creating-Grid-List-Control_img5.jpeg)

Expand All @@ -68,7 +68,7 @@ This designer-created data source is available to use as the data source member

### Through code

The GridList control sample that ships with Essential Grid does not use the designer. It creates an ArrayList of objects that serves as a data source for the GridList control. Each state object has a LongName, ShortName, and ImageIndex properties that can be displayed in the list control.
The MultiColumn ListBox sample that ships with Essential Grid does not use the designer. It creates an ArrayList of objects that serves as a data source for the control. Each state object has a LongName, ShortName, and ImageIndex properties that can be displayed in the list control.

For the complete implementation details, refer to the sample in the following installation path:

Expand Down Expand Up @@ -109,4 +109,4 @@ gridListBox1.FillLastColumn = True

## Selection

Selection for the GridListControl can be enabled by using the SelectionMode property. The `GridListControl` supports three types of selection behaviors based on the [SelectionMode](https://help.syncfusion.com/windowsforms/multicolumn-listbox/data-binding-and-selection-modes) option. The SelectionBehaviors can be specified to one for selecting single row or multi-simple to select many rows.
Selection for the MultiColumn ListBox can be enabled by using the SelectionMode property. The control supports three types of selection behaviors based on the [SelectionMode](https://help.syncfusion.com/windowsforms/multicolumn-listbox/data-binding-and-selection-modes) option. The SelectionBehaviors can be specified to one for selecting single row or multi-simple to select many rows.
2 changes: 1 addition & 1 deletion WindowsForms/MultiColumn-ListBox/Overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ documentation: ug

# About Syncfusion® Windows Forms MultiColumn ListBox Control

The GridList control provides a very rich way to display a list of items in multi-column list view with headers. It supports displaying single and multiple columns, data binding, single and multiple selection, and style customization at cell level.
The MultiColumn ListBox provides a very rich way to display a list of items in multi-column list view with headers. It supports displaying single and multiple columns, data binding, single and multiple selection, and style customization at cell level.

## Key features

Expand Down
2 changes: 1 addition & 1 deletion WindowsForms/MultiColumn-ListBox/Selection-Modes.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ documentation: ug

## Selection modes

Selection behavior of the GridList control can be specified by using the SelectionMode property. There are three types of selection behaviors:
Selection behavior of the MultiColumn ListBox can be specified by using the SelectionMode property. There are three types of selection behaviors:

* One: Selects only one item.
* MultiSimple: Selects multiple items.
Expand Down