Categories | Question details Back To List | ||
acheck and dropdown Hi, is a combination of acheck and a dropdown-filter field possible? I want to have "yes" and "no" in the dropdown-field too. Thank you for your work an spending time Uwe Answer posted by Support on Feb 07, 2008 07:09 It not possible by using #select_filter, but you can create custom selectbox and just attach filtering functionality to it mygrid.attachHeader("A,<select onchange='mygrid.filterBy(1\\,this.value)'><option/><option value='1'>Yes</option><option value='0'>No</option></select>,C"); |