When using bubble can you use a datatype
When using bubble can you use a datatype
rdigiorgio
Posts: 29Questions: 11Answers: 0
I am using bubble editing. I am not seeing the select box.
if (index === 3) {
editor.bubble(this, 'active', {
title: 'Enable/Disable transactions to an Analyst',
buttons: [
{
label: 'Cancel', fn: function () {
this.close();
}
},
{
type: "select",
label: 'Update', fn: function () {
this.submit();
table.ajax.reload();
this.close();
},
name: "NAME",
options: ["true","false"]
}
]
})
This discussion has been closed.
Answers
Reformatted
`
You must put the field definitions in the column definitions when creating the table not the display.
Correct - the field need to be defined in the Editor initialisation through the
fields
parameter, or usingadd()
to do it dynamically. They can't be added when callingbubble()
.Allan