Skip to content

SEO-1815-Missing Image Alt Text issue fixed #13

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 6 commits into
base: hotfix/hotfix-v19.4.0.38
Choose a base branch
from
Open
Changes from 3 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 PHP/Grid/Getting-Started.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
---
layout: post
title: Getting started with Grid widget for Syncfusion Essential PHP
description: How to create the Grid, data bind, enable paging, grouping, filtering and add summaries
description: Learn here all about getting started with Syncfusion PHP Grid control, and its feature such as data bind, enable paging, grouping, filtering and add summaries
platform: php
control: Grid
documentation: ug
---
# Getting started
# Getting started with PHP Grid

This section explains briefly about how to create a Grid in your application with PHP, and also explains about how to enable basic grid operations like Paging, Filtering, Grouping and Summary. The following screenshot illustrates the Grid control.

![](Getting-Started_images/grid.png)
![Getting Started in PHP Grid](Getting-Started_images/grid.png)

## Adding JavaScript and CSS references

Expand Down Expand Up @@ -92,7 +92,7 @@ echo $grid -> dataSource($Json)->allowPaging(true)->columns($gridColumns)->rende

{% endhighlight %}

![](Getting-Started_images/Grid_GettingStarted_img1.png)
![Creating Grid in PHP Grid](Getting-Started_images/Grid_GettingStarted_img1.png)

## Data Binding

Expand Down Expand Up @@ -149,7 +149,7 @@ echo $grid -> dataSource( $Json)->columns($gridColumns)->allowPaging(true)->rend

{% endhighlight %}

![](Getting-Started_images/Grid_GettingStarted_img2.png)
![Data Binding in PHP Grid](Getting-Started_images/Grid_GettingStarted_img2.png)

## Enable Filtering

Expand Down Expand Up @@ -206,7 +206,7 @@ echo $grid -> dataSource( $Json)->columns($gridColumns)->allowFiltering(true)->f

{% endhighlight %}

![](Getting-Started_images/Grid_GettingStarted_img3.png)
![Enable Filtering in PHP Grid](Getting-Started_images/Grid_GettingStarted_img3.png)


## Enable Grouping
Expand Down Expand Up @@ -264,7 +264,7 @@ echo $grid -> dataSource($Json)->allowPaging(true)->allowGrouping(true)->columns

{% endhighlight %}

![](Getting-Started_images/Grid_GettingStarted_img4.png)
![Enable grouping in PHP Grid](Getting-Started_images/Grid_GettingStarted_img4.png)


Refer to the following code example for initial grouping.
Expand Down Expand Up @@ -322,7 +322,7 @@ echo $grid -> dataSource($Json)->allowPaging(true)->allowGrouping(true)->columns

{% endhighlight %}

![](Getting-Started_images/Grid_GettingStarted_img5.png)
![Code Initial grouping in PHP Grid](Getting-Started_images/Grid_GettingStarted_img5.png)


## Add Summaries
Expand Down Expand Up @@ -398,7 +398,7 @@ echo $grid -> dataSource( $Json)->allowPaging(true)->columns($gridColumns)->summ

{% endhighlight %}

![](Getting-Started_images/Grid_GettingStarted_img6.png)
![Add Summaries in PHP Grid](Getting-Started_images/Grid_GettingStarted_img6.png)


## Enable Editing
Expand Down Expand Up @@ -463,7 +463,7 @@ echo $grid -> dataSource($Json)->allowPaging(true)->columns($gridColumns)->editS

{% endhighlight %}

![](Getting-Started_images/Grid_GettingStarted_img7.png)
![Enable Editing in PHP Grid](Getting-Started_images/Grid_GettingStarted_img7.png)


## Enable Selection
Expand Down Expand Up @@ -521,7 +521,7 @@ echo $grid -> dataSource($Json)->columns($gridColumns)->allowPaging(true)->selec

{% endhighlight %}

![](Getting-Started_images/Grid_GettingStarted_img10.png)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why you are removing this image?

![Enable Selection in PHP Grid](Getting-Started_images/Grid_GettingStarted_img10.png)


## Enable Sorting
Expand Down Expand Up @@ -579,6 +579,6 @@ echo $grid -> dataSource($Json)->allowPaging(true)->columns($gridColumns)->allow

{% endhighlight %}

![](Getting-Started_images/Grid_GettingStarted_img11.png)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why are you removing this image?

![Enable Sorting in PHP Grid](Getting-Started_images/Grid_GettingStarted_img11.png)