Skip to content

Dynamic Sorting, Filtering and Paging using Google Charts or plane SQL query

Notifications You must be signed in to change notification settings

r00tmebaby/Dynamic-Ranking

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dynamic Ranking Using Google Charts

With the query only

Select count(Name) as MembersTotal, G_Name as GuildName from GuildMember group by G_Name order by MembersTotal DEsc;

Create view Guilds as Select count(Name) as GuildMembersTotal, G_Name as GName from GuildMember group by G_Name;

Sorting example using Google Charts API.

Very simple and usefull for any web/mobile aplication that needs dynamic searches, pagination and filters without the need to create your own logic that will save a lot of time.

About

Dynamic Sorting, Filtering and Paging using Google Charts or plane SQL query

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published