I think I found the problem. I had to specify the view in a form URL in "tmpl/myview/default.php" so instead:
had to have view in the route as follows:
.
Code:
<form action="<?php echo Route::_('index.php?option=com_helloworld'); ?>" method="post" name="adminForm" id="adminForm">
Code:
<form action="<?php echo Route::_('index.php?option=com_helloworld&view=myview'); ?>" method="post" name="adminForm" id="adminForm">
Statistics: Posted by JanoD — Thu Jun 06, 2024 3:48 pm