For Multiselect dropdown we have given the autoclose property to false , but the dropdown closes once we select a item
Below is the code used
<MultiSelect
id='ddlf4'
// className='k-dropdownstate'
data={result.result}
itemRender={itemRender}
autoClose={false}
value={selval} //{this.props.value || ""}
filterable={true}
onChange={onChange}
onFilterChange={onFilterChange}
clearButton={false}
textField='text'
dataItemKey='id'
//onBlur={this.onLeave}
tags={[]}
/>
Attached the full file also