Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to build a tournament bracket website on asp.net-mvc.

I see this solution on regular asp.net but not for mvc.

Does anyone have a mvc implementation of a tournament bracket (both single and double elimination)? Maybe a jQuery plugin?

share|improve this question
I don't understand why this was closed. This is a real question and i got a real answer – leora Dec 27 '12 at 16:40

closed as not a real question by fthiella, Andrew Whitaker, mc10, John Conde, Andy Hayden Dec 19 '12 at 17:26

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 12 down vote accepted
+200

The link you have posted on the topic shows a sample that is made in Silverlight. With ASP.NET MVC you can use Silverlight too, just improve the correct data to the component and use it on the client side, but I would not recommend you use silverlight.

So, There is a component to do some Tournament Bracket on client side, it is made with jQuery and Javascript. Take a look at this link: http://www.aropupu.fi/bracket/

Just provide the right data in the client side and fill the object to generate the component. With Asp.Net MVC you could create a ViewModel to do this.

$(document).ready(function() {

 // provide your server side code here to generate this data.     
 var tournament = {
  teams : [ /* TEAMS */ 
    ["Team 1",  "Team 2" ],
    ["Team 3",  "Team 4" ],
    ["Team 5",  "Team 6" ],
    ["Team 7",  "Team 8" ],
    ["Team 9",  "Team 10"],
    ["Team 11", "Team 12"],
    ["Team 13", "Team 14"],
    ["Team 15", "Team 16"]
  ],
  results : [[ /* WINNER BRACKET */
    [[3,5], [2,4], [6,3], [2,3], [1,5], [5,3], [7,2], [1,2]],
    [[1,2], [3,4], [5,6], [7,8]],
    [[9,1], [8,2]],
    [[1,3]]
  ], [         /* LOSER BRACKET */
    [[5,1], [1,2], [3,2], [6,9]],
    [[8,2], [1,2], [6,2], [1,3]],
    [[1,2], [3,1]],
    [[3,0], [1,9]],
    [[3,2]],
    [[4,2]]
  ], [ /* FINALS */
    [[3,8], [1,2]],
    [[2,1]]
  ]]
 }

 // select a div node and apply the component.
 $('div#tournament').bracket({init: tournament});

});
share|improve this answer
That's a very cool plugin. Thanks for the tip! – Daniel Lidström Dec 18 '12 at 8:06

Not the answer you're looking for? Browse other questions tagged or ask your own question.