Alexey Shelestenko
My feedback
1 result found
-
2nd ranked
An error occurred while saving the comment Alexey Shelestenko supported this idea ·
1 result found
Please sign in to leave feedback
Please sign in to leave feedback
No results.
Clear search results
What Mark Thiessen said - this is a minor tweak that would improve readability of stats data. Example:
Player 1 Career Stats
year - team - x - y - z
Current layout sorts by year (that's great), and if two entries have the same year value, then it sorts incorrectly (by one of stat values, probably alphabetically).
Example:
2014-2015 - MTL - 82 games played
2015-2016 - MTL - 82 gp
2016-2017 - ARI - 17 gp
2016-2017 - MTL - 65 gp.
This is how Yahoo! Sports currently sorts Stats data rows. In this example, a player played 2 seasons in Montreal, a part of another season, and was then traded to Arizona.
To fix this, introduce a rule that if the Year value is the same for 2 rows (in our example, row 3 and row 4), check if Team value in either row matches Team value in the row preceding them (row 2). If TRUE, then sort by putting the matching row first (i.e., row 4 after row 2). This would give us correct chronological order:
2014-2015 - MTL - 82 games played
2015-2016 - MTL - 82 gp
2016-2017 - MTL - 65 gp and traded to ARI ->
2016-2017 - ARI - 17 gp