Standings Slim
us.season.soccer.standingsSlim is a lightweight version of the standings table.
By default, the widget renders the active standings for MLS.
Parameters
Name | Type | Description | ||||
---|---|---|---|---|---|---|
props |
object | properties | ||||
Name | Type | Argument | Default | Description | ||
seasonId |
number | optional | Active MLS season | Season ID | ||
uniqueTournamentId |
number | optional | 242 | Unique tournament ID. Valid options are: 242 - MLS, 17 - Premier League,35 - Bundesliga,23 - Serie A,8 - La Liga,33 - Ligue 1,7 - Champions League. |
||
conference |
string | optional | Selects conference (MLS only). Valid options are: eastern or western . |
|||
uniqueTeamId |
number | optional | Unique team ID | |||
border |
boolean | optional | If true enables a border around the widget. |
|||
disableHeader |
boolean | optional | If true hides the widget header. |
|||
enableDropdown |
boolean | optional | If true enables conference dropdown selector. Unless uniqueTeamId is set. |
|||
onItemClick |
function | optional | Function/event handler. Emits uniqueTeamId on click or touch. |
Examples
<div class="sr-widget" data-sr-widget="us.season.soccer.standingsSlim" data-sr-season-id="62475" data-sr-conference='eastern'></div>
<script type="application/javascript" src="https://widgets.media.sportradar.com/YOUR_CLIENT_ALIAS/widgetloader" data-sr-language="en_us" async></script>
<script>
(function(a,b,c,d,e,f,g,h,i){a[e]||(i=a[e]=function(){(a[e].q=a[e].q||[]).push(arguments)},i.l=1*new Date,i.o=f,
g=b.createElement(c),h=b.getElementsByTagName(c)[0],g.async=1,g.src=d,g.setAttribute("n",e),h.parentNode.insertBefore(g,h)
)})(window,document,"script","https://widgets.media.sportradar.com/YOUR_CLIENT_ALIAS/widgetloader","SIR", {
language: 'en_us'
});
SIR('addWidget', '#sr-widget', 'us.season.soccer.standingsSlim', {seasonId: 62475, conference: 'western'});
</script>
<div id="sr-widget"></div>
<script>
(function(a,b,c,d,e,f,g,h,i){a[e]||(i=a[e]=function(){(a[e].q=a[e].q||[]).push(arguments)},i.l=1*new Date,i.o=f,
g=b.createElement(c),h=b.getElementsByTagName(c)[0],g.async=1,g.src=d,g.setAttribute("n",e),h.parentNode.insertBefore(g,h)
)})(window,document,"script","https://widgets.media.sportradar.com/YOUR_CLIENT_ALIAS/widgetloader","SIR", {
language: 'en_us'
});
SIR('addWidget', '#sr-widget', 'us.season.soccer.standingsSlim', {seasonId: 40942, uniqueTeamId: '42', onItemClick: function(type, obj){alert('uniqueTeamId: ' + obj.uniqueTeamId);}});
</script>
<div id="sr-widget"></div>
Updated over 1 year ago