First of all, I would like to say that I really like GroceryCrud and the ease of use.
I mainly develop using firefox, but now I have the weirdest of situation.
I use GrocercyCrud on a simple mySql table (6 fields, 1 orimary index, <200 rows).
The call to the $crud->render function deliveres the wanted reults (I did a print_r on the return value of render and saw all results).
When I echo the result (the putput variable) in my view, it works as expected in Chrome, Safari, Opera and IE !!!, but not if Firefox?!
FF work just great on the ten DB tables I am managing using GC, but this one just does not want to display.
I extract the JS and CSS like this:
<?php foreach($css_files as $file): ?>
<link type="text/css" rel="stylesheet" href="<?php echo $file; ?>" />
<?php endforeach; ?>
<?php foreach($js_files as $file): ?>
<script src="<?php echo $file; ?>"></script>
<?php endforeach; ?>
When I comment out the the js_files from the rendered result, the table shows, but many other functions are missing.
Did anybody ever encountered that?
Thanks a lot in advance,
Ralf