I have a really weird issue with Combobox in WPF.I have used it before in a simpler implementation and thought I knew how it works, but apparently not.The scenario is as follows... I have three classe
I\'ve been developing a web app using asp.net mvc and nhibernate. I\'m trying to follow some principles of DDD and best pratices of Asp.Net MVC. My question is about Clean up POST with VIewModels. To
ViewModel class public class CreateMRViewModel { public Decimal? Freight { get; set; } public IList<OrderLine> OrderLines { get; set; }
I have a requirement to select bulk data (million rows) and then update the DB Table. Now, I am reading the data chunk by chunk in a BackgroundWorker (as the usage being specified in MSDN)
The app I\'m building requires the use of iframes for wysiwyg text editing, and these iframes need to be wired up to the viewModel, but I\'m finding that this clashes with knockout... or at least knoc
Currently I am using a ViewModelFactory hanging off HtmlHelper in an extension method: public static IViewModelFactory ViewModels(this HtmlHelper helper)
I know binding a view model to a view is ok, view models containing view models is ok, and views containing views is ok. I have a situation where it seems a sub-view needs to be bound to a view.
Consider these two scenarios: a user presses a button in a view (e.g. Fulfill Order) and we want the view to update immediately (disable the button, add a progress bar, etc.)
I\'ve been struggling since yesterday to build a (what I thought) simple Ribbon on WPF, using MVVM. I found quite a few links on the internet (and on Stack Overflow), but none could really solve my pr
With current practices (at least with WPF and Silverlight) we see views bound via command bindings in the view model or we at least see view events handled in view models. This appears to be a violati