Multi-row editing
Multi-row editing
zehh_junior
Posts: 3Questions: 2Answers: 0
in Editor
Hello,
Is it possible to choose which fields will be displayed to editing in Multi-row editing modal?
Like:
buttons: [
{
extend: 'edit',
text: 'Edit',
className: 'btn btn-primary',
editor: editor.fields('quantity','cost')
}
This discussion has been closed.
Answers
The
fields.multiEditable
option can be used to disallow fields from being multi-row editable.Allan
Hi Allan, thanks for the answer,
I see that fields.multiEditable is enable since Editor 1.6, I use the 1.5. Is there another way to choose the fields enable to edit?
*Sorry for my english
Not really. You could perhaps use the
show()
andhide()
methods to show and hide the fields as you need, but with 1.5 that's really the only option.On the plus side, 1.6 is a free upgrade.
Allan