• Jobs
  • About Us
  • professionals
    • Home
    • Jobs
    • Courses and challenges
  • business
    • Home
    • Post vacancy
    • Our process
    • Pricing
    • Assessments
    • Payroll
    • Blog
    • Sales
    • Salary Calculator

0

204
Views
How do I correctly use these CakePHP functions as Javascript strings
for (i = 0; i < filesinput.files.length; i++){
        let row_i = document.createElement('tr');
        let row_i_data_1 = document.createElement('td');
        row_i_data_1.innerHTML = '<?php $this->Form->control("submittedfiles[' + i + '][description]", ['type'=>'text', 'value'=>$file['name'], 'label'=>'']); ?>'
        let row_i_data_2 = document.createElement('td');
        row_i_data_2.innerHTML = '<?php $this->Form->control("submittedfiles['+i+'][date]", ['type'=>'datepicker', 'default'=>Cake\I18n\Time::now(), 'label'=>'']); ?>';
        let row_i_data_3 = document.createElement('td');
        row_i_data_3.innerHTML = '<?php $this->Form->control("submittedfiles['+i+'][time]", ['label'=>'', 'type'=>'text', 'default' => date('H:i')]); ?>';
        
        row_i.appendChild(row_i_data_1);
        row_i.appendChild(row_i_data_2);
        row_i.appendChild(row_i_data_3);
        tbody.appendChild(row_i);
    }

I'm trying to generate a table with inputs when files are selected in the filesinput. The table generation works, but I'm having trouble with getting the strings to accept the php code. The code enclosed by <?php ?> gets converted to html forms when compiling, and JavaScript shouldn't have a problem with HTML as strings, so I don't understand what's going wrong here.

about 3 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Our process Sales
Legal
Terms and conditions Privacy policy
© 2025 PeakU Inc. All Rights Reserved.

Andres GPT

Recommend me some offers
I have an error