I open up a windowmanager and add a textfield and listbox:
editor.windowManager.open({
title: 'Insert caption',
body: [
{type: 'textbox', name: 'text', label: 'text', 'multiline': 'true', 'minWidth': 450, 'minHeight': 100},
{type: 'listbox', name: 'align', label: 'align', 'values': ['pull-left','pull-right']}
],
The listbox is displayed, but not the values. In the documentation (http://www.tinymce.com/wiki.php/api4:class.tinymce.ui.ListBox) it states: "Array with values to add to list box."
What am I doing wrong?
I found out while searching in the official TinyMCE plugins. So this is how it's done:
{type: 'listbox',
name: 'align',
label: 'align',
'values': [
{text: 'Left', value: 'left'},
{text: 'Right', value: 'right'},
{text: 'Center', value: 'center'}
]
}