By tag: DropDownList
0
kicks
Code clarity: MVC 2 DropDownListFor - Any troubles? - Part 2
Hello again. Today I want to talk about select list with optgroups. So, I need such a list. MVC has no support for it. What to do? After little browsing I decide wrote my own solution. It is based on code from fixed version of MVC DropDownList (you can read about it in Part 1).
Main features ...
0
kicks
Code clarity: MVC 2 DropDownListFor - Any troubles? - Part 1
When working on one project, I have a trouble with MVC DropDownListFor - selected value doesn't returned to the server. I saw a lot of articles, questions, etc.. about this theme. And I decide to write a little article about my solution. As for me - it is more than simple :)
0
kicks
The DropDownList, the DataBind and the Missing Value
This covers a control to help handle the ArgumentOutOfRangeException that happens when a DropDownList has the SelectedValue data bound and the value is not in its items collection.
0
kicks
Using AJAX to Create a DropDownList for Populating a TextBox
A pretty little ditty that I created to allow you to copy items into a textbox quickly clientside.
0
kicks
Three Ways to Bind a DropDownList with LINQ and C# ASP .NET
Learn about three different methods for populating data in a DropDownList, using LINQ and .NET 3.5. Covers the simple, the direct, and the 3-tier enterprise method. Learn how to save time on your next project with tons of DropDownList controls or just impress your friends.
0
kicks
Using a RequiredFieldValidator with a RadioButtonList, DropDownList, L
We often need to require a user select an item in a RadioButtonList, or any other web control derived from ListControl. Often an uninitiated programmer will add a RequiredFieldValidation control to their form and set the ControlToValidate property to the RadioButtonList in question.
0
kicks
Dynamic DropDownList with Month Names
how to Creat a DropDownList with Month Names and never worry about localization :P
this is a function i did and i wanted to add a story as a contribution hope its helpfull
0
kicks
Custom auto-bound Drop Down List
Creating a drop down list that automatically binds from a database.