How to display label of value stand alone editor?
How to display label of value stand alone editor?
How to display label of value stand alone editor?
{
name: "isjoin",
type: 'select',
options: [{
label: 'ok',
value: 'Y'
}, {
label: 'no',
value: 'N'
}, ],
}
I want to display ok or no.
Is there a way?
And I hope to be added load data function with stand alone editor.
This question has accepted answers - jump to:
This discussion has been closed.
Answers
That will display the options in the editing form, but if you mean in the document after the form has been edited, with standalone editing you would need to use
postEdit
to modify the document since Editor will just write the value into the document.Allan
Display label in document what I mean.
Like form editor.
Or Form editor into document div(Not modal) possible?
I hope to use full form editor function in document...
As I say, would you need to use
postEdit
to write the label into the document.Allan