Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a problem, I think this is a AJAX problem but i am not sure. Now I am not too sure at what code I should post so if I have missed anything let me know and i post it.

First i think I should say that the site I am working on is built in CakePHP. I have a page that loads four weeks of a project schedule. Then there is a next button on this page to load in the next four nexts, which is done using AJAX. This is with no problems. I need to be able to make each four weeks into a pdf document. I do this working, I can make a pdf with the data from the 1st page but when I load in the next four weeks, it still makes the pdf with the original four week.

To make the pdf I am using DomPDF, that is inside my controller, this works, as like i say it does make a pdf.

Below is the code I have added to the .ctp view this file is reloaded from a AJAX call, like I say that works fine (I don't really know AJAX at all, someone else did this page). The code I have added adds the form and puts the table code within this form, so I can turn this into a pdf. So what I think i need (please correct me if I am wrong) is to make a AJAX function that updates this form with new code.

This is the problem I have been having. As the code that is put into the form is only in the form after the 'pdf' button is press, which to me does rise a question, which I just don't understand. That is, even if I don't make a pdf on the first screen, on the second screen, which would have no code inside the hidden form element (pdfhtml), still then adds the code from the first screen. Its this that does not update, and I can't see why?

Also to add, although I don't think this is part of the issue, all the AJAX calls / functions are within JQuery.

Please let me know if you need any more of the code...

$pdfform = $form->create('Projects', array('url' => '/projects-pdf/', 'id' => 'pdfform', 'target' => '_blank'));
$pdfform .= $form->input('html', array('id' => 'pdfhtml', 'type' => 'hidden'));
$pdfform .= $form->input('file', array('id' => 'pdffile', 'type' => 'hidden', 'default' => 'ProjectSchedule'));
$pdfform .= $form->end(array('label' => __d('projects', 'PDF', true), 'id' => 'pdftest', 'div' => false));


    if (isset($isAJAX) && $isAJAX) {
        echo $html->tag('table', $table, array('id' => 'schedule', 'class' => $monday));

    } else {
        $table = $html->tag('table', $table, array('id' => 'schedule', 'class' => $monday));
        $div = $html->tag('div', $table, array('class' => 'summary'));  
        $pdf = $html->tag('div',$table,array('id' => 'pdfheader','class' => 'hide'));
        echo $html->tag('div', $h2.$div, array('class' => 'module'));
        echo $html->tag('span', $pdfform.$pdf, array('class' => 'projectpdf'));
    }

Many thanks for any help given.

Glenn.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.