DropDownList (or) Select
Content:
- Clear items from DropDownList
- Get selected index from DropDownList
- Get selected text from DropDownList
- Get selected value from DropDownList
- Set DropDownList selected value based on display text
- Set DropDownList selected value based on display value
1. Clear items from DropDownList:
$('#ddlRole').empty();
2. Get selected index from DropDownList:
var i = $('#ddlRole option:selected').index(); alert('Selected Index is: ' + i);
3. Get selected text from DropDownList:
var roleName = $('#ddlRole option:selected').text(); alert('Selected Role Name is: ' + roleName);
4. Get selected value from DropDownList:
Example: (1)
var roleId = $('#ddlRole option:selected').val(); alert('Selected Role Id is: ' + roleId);
Example: (2)
var roleId = $('#ddlRole').val(); alert('Selected Role Id is: ' + roleId);
5. Set DropDownList value based on display text:
// Now set dropdown selected option to 'Admin'. var selectedText = 'Admin'; $('#ddlRole option').map(function () { if ($(this).text() == selectedText) return this; }).attr('selected', 'selected');
6. Set DropDownList value based on value:
Example: (1)
var selectedValue = '3'; $('#ddlRole option').map(function () { if ($(this).val() == selectedValue) return this; }).attr('selected', 'selected');
Example: (2)
var selectedValue = '3'; $('#ddlRole').val(selectedValue);
-
UpdatedMar 14, 2015
-
Views2,206