this is the ajax
JavaScript:
here is how I'm accessing in controller, selectedOption is in the ajaxData
PHP:
I'm using {$selectedOption} to access...
Read more
Читать далее...
JavaScript:
Код:
XF.ajax('GET', XF.canonicalizeUrl('statistics'), ajaxData, function (data) {
});
here is how I'm accessing in controller, selectedOption is in the ajaxData
PHP:
Код:
public function actionIndex(ParameterBag $params) {
$selectedOption = $this->filter('selectedOption', 'int');
$viewParams = [
'selectedOption': $selectedOption
];
return $this->view('mycontroller/action', 'my_template', $viewParams);
}
I'm using {$selectedOption} to access...
Read more
Читать далее...