Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to insert a value into a selectlist. It isn't the "0" value (i.e. the first one that shows) but the next one which would be "Other". This is then used to display an "Other" textbox.

My question is similiar to link text.

EDIT: I don't know if this will help but here is the code:

        SelectList Titles;
        ViewData["TitleIsOther"] = TitleIsOther(Case);
        if ((bool)ViewData["TitleIsOther"])
        {
            Titles = new SelectList((LookupCollection)this.LookupRepository.FetchByCategory(true, 0, 0, false,
             (int)Enums.LookupCategory.CaseTitles, _LoggedInUser.AccountId), "Id", "Name", "-1");
        }
        else
        {
            Titles = new SelectList((LookupCollection)this.LookupRepository.FetchByCategory(true, 0, 0, false,
             (int)Enums.LookupCategory.CaseTitles, _LoggedInUser.AccountId), "Id", "Name");
        }
        ViewData["Titles"] = Titles;

The selected value of "-1" would be the "Other" option.

share|improve this question
If you post the controller code that creates the SelectList, someone may be able show you how to modify it to inject your extra item. – grenade Aug 12 '09 at 9:29

1 Answer

You can't add 2nd value in similar fashion as optionLabel parameter of Html.DropDownList() provides. You will have to generate SelectList manually.

This post might be useful.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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