multi select option in one of the columns
multi select option in one of the columns

In my datatable I would like to have data along with an edit icon.
When the edit icon is clicked, a multi select option should be available.
Example:
columns : [
{
data : 'name',
"mRender": function (data, type, full)
{
return data + MULTI SELECT OPTION;
}
}
]
But I'm not sure how to achieve this.
This discussion has been closed.