I wanted to write my own custom Editor with its viewer modul. So I put both Editor and Viewer php classes in the qa-plugin/my-editor directory. The qa-plugin.php file loads both the editor and the view as follows:
qa_register_plugin_module('editor', 'my-editor.php', 'my_editor', 'My Editor');
qa_register_plugin_module('viewer', 'my-viewer.php', 'my_viewer', 'My Viewer');
In the Admin->posting Console, I selected 'My Editor'. But it seems that the basic view is always selected. In the editor the data are saved in a Format 'MYFORMAT' and it is calculated that when 'MYFORMAT' it should return 1.0. But the basic view is always used.
How can I force Q2A to choose my view?