its possible to extend button with two options?
its possible to extend button with two options?
scipiosoft
Posts: 18Questions: 8Answers: 0
its possible to extend button with two options?
ex:
extend: "edit selectedSingle",
{
text: "<i class='fa fa-plus'></i>",
titleAttr: "Add Key (SHIFT + N)",
key: {
shiftKey: true,
key: 'n'
},
formTitle: 'Add Key to ' + product.toUpperCase(),
extend: "create selectedSingle",
editor: editor
}
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
No - sorry. Extend can only operate with a single button to extend. In this case the
selectedSingle
option would probably be the best option and calledit()
from theaction
function.Allan