How to add a calendar icon to the menu items in DropDownList.
My requirement in the below code is to have a calendar icon for dropdown item “Date Range” where i need to select date range upon selecting the calendar icon.
$(“#datefilter”).jqxDropDownList({
source: [{
“id”: “today”,
“name”: “Today”
}, {
“id”: “last24hours”,
“name”: “Last 24 hours”
}, {
“id”: “yesterday”,
“name”: “Yesterday”
}, {
“id”: “thisweek”,
“name”: “This week”
}, {
“id”: “thismonth”,
“name”: “This Month”
}, {
“id”: “lastmonth”,
“name”: “Last Month”
}, {
“id”: “datetimerange”,
“name”: “Date Range”
}],
selectedIndex: 0,
displayMember: ‘name’,
valueMember: ‘id’,
theme: ‘custom’,
width: ‘110’,
height: ’23px’,
autoDropDownHeight: true
});
Can you please help me out.
Thanks