I\'ve got some mvc3 client side validation that is acting strange. In my controller I\'ve got ViewBag.Id = item.Id;
I have this WPF/MVVM开发者_运维问答 Application that a TabControl with a bunch of tabs. When the app loads, data for all tabs are loaded. There are some calculations that are made on Tab1 that\'s depe
I have a tabbed application where I want the user to be able to search for a person and then, in a new view, show the person\'s details. The user should be able to have multiple person detail views op
I have a ViewModel that looks like this: public class CreateReviewViewModel { public string Title { get; set; }
is it possible to bind an itemscontrol with canvas as template to multiple DataTemplates? I have 2 collections and depending on the type I would like to display a different control on my canvas.
I\'d like to \'reduce\' the number of commands in my ViewModel class. I have one ViewModel which contains 5+ lists (using Listboxes on View to presentate, and I\'m binding an ObservableCollection to
I\'m trying to do a post with jQuery in an MVC app开发者_如何学运维lication, according to this SO answer here:
I\'m trying to achieve something fairly simple but having some problem with the model binding. public enum ColumnType
I\'m experimenting with ASP.NET MVC2, in particular viewmodels and partials. My question is: Is it ‘valid’ or ‘right’ to have your partials strongly typed against an interface and the have your vi
I have a list of lists I have to show to the user. When the user clicks on an element of the first list the second view must update to show the \"childs\" of the clicked element.