vote up 6 vote down star

I'm curious as to the best route (more looking towards simplicity, not speed or efficiency) to sort a DropDownList in C#/ASP.NET - I've looked at a few recommendations but they aren't clicking well with me.

Edit: Folks, I do not have control over how the data comes into the DropDownList - I cannot modify the SQL.

flag

Are you looking to sort the list serverside or clientside? If serverside, what type of data source will you be using? – Kevin Dostalek Oct 21 '08 at 16:43
Clientside. I do not have control over how the data comes into the DDL. – scrot Oct 21 '08 at 17:25
So obviously I cannot control the SQL statement in this case. – scrot Oct 21 '08 at 17:26
If your data is coming to you as a DataTable (or a DataSet), my answer below should work for you. The built-in sorting functionality of the DataTable is kind of hidden. – MusiGenesis Oct 21 '08 at 17:47

13 Answers

vote up 2 vote down check

If you get a DataTable with the data, you can create a DataView off of this and then bind the drop down list to that. Your code would look something like...

DataView dvOptions = new DataView(DataTableWithOptions);
dvOptions.Sort = "Description";

ddlOptions.DataSource = dvOptions;
ddlOptions.DataTextField = "Description";
ddlOptions.DataValueField = "Id";
ddlOptions.DataBind();

Your text field and value field options are mapped to the appropriate columnns in the data table you are receiving.

link|flag
vote up 4 vote down

I usually load a DropDownList with values from a database table, so the easiest way is to sort your results as desired with the ORDER BY clause of your SELECT statement, and then just iterate through the results and dump them into the DropDownList.

link|flag
OP indicates he cannot modify the SQL used to populate this dropdown – DaveJustDave Oct 22 '08 at 23:50
vote up 0 vote down

If the values in the DropDownList are data driven, I usually sort the data in the SQL statement by whatever the value ends up being.

link|flag
vote up 7 vote down

DropDownList takes any IEnumerable as a DataSource.

Just sort it using LINQ.

link|flag
vote up 0 vote down

I agree with the folks in sorting your data in the model before populating them to the DropDownList, so if you are populating this from a DB, it is a good thing to get them sorted already there using a simple order by clause, it will save you some cycles in the web server, and I am sure the DB will do it so much faster. If you are populating this from another data source for example, XML file, using LINQ will be a good idea, or even any variation of Array.Sort will be good.

link|flag
vote up 0 vote down

I agree with sorting using ORDER BY when populating with a database query, if all you want is to sort the displayed results alphabetically. Let the database engine do the work of sorting.

However, sometimes you want some other sort order besides alphabetical. For example, you might want a logical sequence like: New, Open, In Progress, Completed, Approved, Closed. In that case, you could add a column to the database table to explicitly set the sort order. Name it something like SortOrder or DisplaySortOrder. Then, in your SQL, you'd ORDER BY the sort order field (without retrieving that field).

link|flag
vote up 0 vote down

MusiGenesis has it right - sort the data at the source.

link|flag
vote up 0 vote down

If your data is coming to you as a System.Data.DataTable, call the DataTable's .Select() method, passing in "" for the filterExpression and "COLUMN1 ASC" (or whatever column you want to sort by) for the sort. This will return an array of DataRow objects, sorted as specified, that you can then iterate through and dump into the DropDownList.

link|flag
vote up 2 vote down

Take a look at the this article from CodeProject, which rearranges the content of a dropdownlist. If you are databinding, you will need to run the sorter after the data is bound to the list.

link|flag
vote up 1 vote down

What kind of object are you using for databinding? Typically I use Collection<T>, List<T>, or Queue<T> (depending on circumstances). These are relatively easy to sort using a custom delegate. See MSDN documentation on the Comparison(T) delegate.

link|flag
Thanks, I think this is the best way to do this. In my case, I'm using properties of a data set to load a "filters" dropdown. By adding each property to a list when getting the data, I can sort the list later and databind to my dropdown when needed. Also allows tweaking of filters in list for any text changes. Thanks! – Jason Jul 29 at 16:04
vote up 3 vote down

Assuming you are running the latest version of the .Net Framework this will work:

List<string> items = GetItemsFromSomewhere();
items.Sort((x, y) => string.Compare(x, y));
DropDownListId.DataSource = items;
DropDownListId.DataBind();
link|flag
vote up -1 vote down

You may not have access to the SQL, but if you have the DataSet or DataTable, you can certainly call the Sort() method.

link|flag
If either one had a Sort method, you could. – MusiGenesis Oct 23 '08 at 1:36
vote up 0 vote down

You can use this javascript fuction

function sortlist(mylist) { var lb = document.getElementById(mylist); arrTexts = new Array(); arrValues = new Array(); arrOldTexts = new Array();

for(i=0; i

arrOldTexts[i] = lb.options[i].text; }

arrTexts.sort();

for(i=0; i

Thans and Regards Mrutyunjay Palai

link|flag

Your Answer

Get an OpenID
or

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