Hi Peter
[QUOTE=dusker
1. how to show some more columns in a subpanel of a custom module (do i put it in modules/<ModuleUnderSubpanel>/metadata/subpanels/default.php in list_fields array or its just an array of labels?)
[/QUOTE]
You can add new fields into the list_field array. The new fields should be displayed automatically.
[QUOTE=dusker
2. is there any way to remove either globally or in a paticular module button 'save and continue' from edit view?
[/QUOTE]
There is a fast but non-upgrade safe way to do that:
Edit the file include/EditView/EditView2.php and change the line
PHP Code:
var $showVCRControl = true;
to
PHP Code:
var $showVCRControl = false;
There is an upgrade safe way to do that, but you need to create a custom view.edit.php for each module. Define into view.edit.php the function display() containing this code:
PHP Code:
$this->ev->showVCRControl = false;
parent::display();
Regards
Bookmarks