Articles : Page 1 of 1
-
MVC 2 Editor Template for Radio Buttons
May 1026A while back I blogged about how to create an HTML Helper to produce a radio button list. In that post, my HTML helper was “wrapping” the FluentHtml library from MvcContrib to produce the following html output (given an IEnumerable list containing the items “Foo” and “Bar”): 1: <div> 2: <input id="Name_Foo" name="Name" type="radio" value="Foo" /><label for="Name_Foo" id="Name_Foo_Label">Foo</label> 3: <input id="Name_Bar" name="Name" type="radio" value="Bar" /><label for="Name_Ba...
-
Using jQuery UI Tabs with ASP.Net MVC and Ajax Form Submit
May 1019Using jQuery UI Dialog with ASP.Net and AJAX Update Panel is the most popular post in my blog. While these dialog boxes are ok, I have come to hate them. Primarily because of their over use. And the one thing I hate most about them is they take the control away from the user and forces the user to attend to the dialog box before proceeding. While this may be appropriate in certain situations, I have seen far too much abuse of the dialog boxes. And that is the reason I like jQuery UI Tabs. It doe...
- 1

