Hi
I have created parameter as follow
Select2::create(array(
"name"=>"SelectResource",
"multiple"=>true,
"dataStore"=>$this->dataStore("Resources"),
"dataBind"=>array(
"text"=>"ResourceName",
"value"=>"ResourceId",
),
"attributes"=>array(
"class"=>"form-control",
)
));
This is working good with view.php, now I want to sent the same to viewPDF.php using HTML post form
could you please help