Welcome Guest, Not a member yet? Register   Sign In
Open in a new window
#1

(This post was last modified: 07-07-2018, 01:03 AM by kayinja.denis.)

Hello,

I have this code but I'd like the view to open in a new window, I've tried various sources but failed to work

PHP Code:
public function getStudentReport()
 
   {
 
       $schoolorclass $this->input->post('schoolorclass');
 
       $reportfor $this->input->post('reportfor');

 
       if ($reportfor == 'schoolyear') {
 
           if($schoolorclass !='school'){

 
               $this->data['classID'] = $classID $this->input->post('classID');
 
               $this->data['sectionID'] =$sectionID $this->input->post('sectionID');
 
               $this->data['value'] = $value $this->input->post('value');

 
               if($sectionID == 0){
 
                   $this->data['students'] = $this->studentrelation_m->get_student_report_all($value$classID);
 
               }else{

 
                   $this->data['students'] = $this->studentrelation_m->get_studentSection_report_all($value$classID$sectionID);
 
               }
 
               echo $this->load->view('report/student/StudentAdmitted'$this->datatrue);               
            
}else{
 
               echo "<h4 class='text-danger'>'PLEASE SELECT A CLASS!' </h4>";
 
           }



How can i make this view or url (report/student/StudentAdmitted)  to open in a new window

thanks
Reply
#2

Use the following code in the view
Code:
target="_blank"
"Make it idiot proof and someone will make a better idiot."
Reply
#3

(07-07-2018, 03:48 AM)kierownik Wrote: Use the following code in the view
Code:
target="_blank"

hey  Undecided Undecided where do you place it.....
please more info
Reply
#4

where you make the link

https://www.w3schools.com/tags/tryit.asp...ink_target
"Make it idiot proof and someone will make a better idiot."
Reply
#5

(07-07-2018, 07:02 AM)kierownik Wrote: where you make the link

https://www.w3schools.com/tags/tryit.asp...ink_target

seriously it doesn't work for me. I use js to send data to other controller 
check here my link 
PHP Code:
function ajaxCall(passData) {
 
       $.ajax({
 
           type'POST',
 
           url"<?=base_url('report/getStudentReport')?>",
 
           datapassData,
 
           dataType"html",
 
           success: function(data) {
 
               $('#load_studentreport').html(data);
 
           }
 
       });
 
   
Reply




Theme © iAndrew 2016 - Forum software by © MyBB