vote up 0 vote down star
2

How suitable ASP.Net MVC for developing anything like http://www.google.com/ig

I haven't seen or failed to find any examples yet. Does MVC approach imply that user interface is not supposed to look like that ?

flag

69% accept rate

3 Answers

vote up 2 vote down check

Check out http://www.linksgrid.com, it is an open source Web 2.0 Portal developed using Asp.Net MVC 1.0, Microsoft Ajax Client Templates and jQuery with drag and drop widget personalization much like google.com/ig.

link|flag
vote up 0 vote down

I guess a little bit more clarification, what exactly do you mean by "suitable"?

One method might be for each available "widgit" to be a controller, and then you can use jQuery (or whatever you want) to call the specified method and render. The page would then have a series of "lists" (which you can store in the DB) against the user and you can simply order those lists to display the relevant widgits in the correct order.

Obviously, that's a VERY large simplification....

link|flag
I guess, if it is too difficult or workarounds are not in MVC spirit we may consider ASP.Net MVC not suitable for UI like that. – MicMit May 12 at 0:57
Well, I've not found it to be any more difficult that any other methods. The UI can look like anything you want it to. You'll just need to sort out the HTML and CSS yourself. Try this link as a start for jQuery widgit drag and drop labs.dropit.se/blogs/post/… – boymc May 12 at 1:12
vote up 3 vote down

MVC is quite suitable for such a UI. Your main controller can render with a list of the widgets the user has defined, or an ajax call to a method returning a JsonResult can be used... this can generate the wrappers client-side calling for each partial vie for the corresponding controls. I would think that MVC would simplify things quite a bit.

MVC + jQueryUI would be about all you'd need...

link|flag

Your Answer

Get an OpenID
or

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