techblog
techblog

Reputation: 529

DropdownList in Sharepoint 2010

I need to put 2 cascading dropdownlists on the home page in SharePoint 2010. The data have to be populated from the Sharepoint List in both the dropdownlists. I know it can be done easily on InfoPath forms but is there a way to have this functionality on the Webpage as we have in asp.net websites.

Upvotes: 0

Views: 626

Answers (4)

Manish
Manish

Reputation: 1

spcascade.org provides best free solution which support multi level dropdown list with no limits. It is javascript/jquery based solution with no page refreshes and involves only one look up list for multiple columns. Saves data in single line text instead of typical Ids that are used by typical look up columns. Very easy to use syntax too!

http://www.spcascade.org

Upvotes: 0

AymKdn
AymKdn

Reputation: 3927

You can do it with JavaScript, and there are several libraries that can help you :

Upvotes: 0

Sree Kuttan
Sree Kuttan

Reputation: 203

You can fetch the data to a hidden field and then using JavaScript bind it to the dropdowns this is what we did in our project where it was taking too long to bind it on postback.

Upvotes: 0

Stark
Stark

Reputation: 441

You can do it by Jquery Library for Sharepoint Web Services Please refer the link :- Click Here

Upvotes: 1

Related Questions