I'm new to Yii2 and Web-Application-Programming at all. But I have to face the challange so I hope for little help here...
At the moment I'm working on an report-module where the user can base-configure his own report. Then in the view of the reports-grid there's an action-column with a "evaluate report"-button. I made it so far, that once the button is clicked the "evaluation"-view with the datagrid based on an array is rendered (modified the ReportModel and the ReportController).
But that is not the functionality I want: Once the button is clicked there should be first a form rendered (filter) where the user can set some further filter options. These options should be passed to the SQL-Statement after clicking a submit-button in the filter-form and the datagrid should be rendered on the same page below the filter-form. The filter-form should be editable at any time and the new datagrid should be re-rendered after clicking the submit-button.
What I need is an explanation of the professional method to implement such functionality (no code requiered)...it's more a guide like "how to" what I need. Please have in mind that I'm not a professional programmer, thanks a lot!