-
Notifications
You must be signed in to change notification settings - Fork 0
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
Yvone-Atieno
wants to merge
6
commits into
hotfix/hotfix-v19.4.0.38
Choose a base branch
from
Missing-Image-Description-php-docs
base: hotfix/hotfix-v19.4.0.38
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
69a30e5
Missing Image Alt Text Issue fixed
Yvone-Atieno e8cb923
Missing Image Alt Text Issue Fixed
Yvone-Atieno f3d52b8
Missing Image Alt Text Issue fixed
Yvone-Atieno afe41b8
Missing Image Alt Text issue fixed
Yvone-Atieno b848184
Missing Image Alt Text issue fixed
Yvone-Atieno 2a328f8
Missing Image Alt Text issue fixed
Yvone-Atieno File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 in 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. | ||
|
||
 | ||
 | ||
|
||
## Adding JavaScript and CSS references | ||
|
||
|
@@ -92,7 +92,7 @@ echo $grid -> dataSource($Json)->allowPaging(true)->columns($gridColumns)->rende | |
|
||
{% endhighlight %} | ||
|
||
 | ||
 | ||
|
||
## Data Binding | ||
|
||
|
@@ -149,7 +149,7 @@ echo $grid -> dataSource( $Json)->columns($gridColumns)->allowPaging(true)->rend | |
|
||
{% endhighlight %} | ||
|
||
 | ||
 | ||
|
||
## Enable Filtering | ||
|
||
|
@@ -206,7 +206,7 @@ echo $grid -> dataSource( $Json)->columns($gridColumns)->allowFiltering(true)->f | |
|
||
{% endhighlight %} | ||
|
||
 | ||
 | ||
|
||
|
||
## Enable Grouping | ||
|
@@ -264,7 +264,7 @@ echo $grid -> dataSource($Json)->allowPaging(true)->allowGrouping(true)->columns | |
|
||
{% endhighlight %} | ||
|
||
 | ||
 | ||
|
||
|
||
Refer to the following code example for initial grouping. | ||
|
@@ -322,7 +322,7 @@ echo $grid -> dataSource($Json)->allowPaging(true)->allowGrouping(true)->columns | |
|
||
{% endhighlight %} | ||
|
||
 | ||
 | ||
|
||
|
||
## Add Summaries | ||
|
@@ -398,7 +398,7 @@ echo $grid -> dataSource( $Json)->allowPaging(true)->columns($gridColumns)->summ | |
|
||
{% endhighlight %} | ||
|
||
 | ||
 | ||
|
||
|
||
## Enable Editing | ||
|
@@ -463,7 +463,7 @@ echo $grid -> dataSource($Json)->allowPaging(true)->columns($gridColumns)->editS | |
|
||
{% endhighlight %} | ||
|
||
 | ||
 | ||
|
||
|
||
## Enable Selection | ||
|
@@ -521,8 +521,6 @@ echo $grid -> dataSource($Json)->columns($gridColumns)->allowPaging(true)->selec | |
|
||
{% endhighlight %} | ||
|
||
 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why you are removing this image? |
||
|
||
|
||
## Enable Sorting | ||
|
||
|
@@ -579,6 +577,6 @@ echo $grid -> dataSource($Json)->allowPaging(true)->columns($gridColumns)->allow | |
|
||
{% endhighlight %} | ||
|
||
 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why are you removing this image? |
||
|
||
|
||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Get it content reviewed. I think, it should be
Getting started with PHP Grid