Hi guys,
I am using a pro version (still evaluating)
I am trying to use a multiple selection dropdown control in one column but can't really make it work.
I need to select multiple values from the drop down that is within the grid.
Currently I am using jquery-gentleSelect control but open for any suggestion.
I define one column as:
{title: "Select", dataIndx:"slct", resizable: false, sortable:false,
editor: {
type: "<select id='slctApplyTo' multiple='multiple'><option value='1'>FName1 LName1</option><option value='2'>FName2 LName2</option><option value='3'>FName3 LName3</option><option value='4'>FName4 LName4</option><option value='5'>FName5 LName5</option></select>"
}
}
and have a code to make gentleSelect work:
$("#slctApplyTo").gentleSelect(
{
columns: 1,
itemWidth: 100,
maxDisplay: 3
}
);
Any help would be appreciated.
Thanks a lot,