SearchId = selectboxのID
$('#SearchId').on('change', function() { var selId = $(this).val(); $.ajax({ url: '<?php echo $this->Html->url(array('action' => 'index')); ?>', type: "POST", dataType: 'json', data: { selId: sel_val }, }) }).trigger('change');
としてみました。
controllerで
if ($this->request->is('ajax')) { if ($this->request->is('post') || $this->request->is('put')) {
とし、ダンプしようとしましたが受け取れません。
何が足りませんか?