Browse By Tags

  • How to determine if item is selected on client-side.

    On DropDownClosed client-side event of the WebDropdown, I need to know how to get the Web dropdown's selected item collection and get its text, value and index. I am not using the check boxes in the drop down, but I allow multi selection.

    1. What would…

  • Setting selected item/index in client-side code

    I am trying to learn how to programmatically set the value in a WebDropDown object (on the client).  Here is my test code:

    function SetTo(value) {
      var combo = $find('<%= wddRoles.ClientID %>');
      var items = combo.get_items();
      var index =…