Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Show details Icons not working #212

Open
napovader opened this issue Jun 23, 2016 · 1 comment
Open

Show details Icons not working #212

napovader opened this issue Jun 23, 2016 · 1 comment

Comments

@napovader
Copy link

napovader commented Jun 23, 2016

I Made a basic initialization of the table but when I open it from my phone or resize the browser the responsive show the + or - icons but it doesn't show the hidden fields

This is my table<table id="tabla" class="display dt-responsive no-wrap" width="100%"> <thead> <tr> <th>Profesor</th> <th>Materia</th> <th>Seccion</th> <th></th> <th></th> <th></th> <th></th> </tr> </thead> <tbody> <% @profesors.each do |profesor| %> <tr> <td><%= profesor.profesor %></td> <td><%= profesor.materia %></td> <td><%= profesor.seccion %></td> <td><%= link_to 'Show', profesor %></td> <td><%= link_to 'Edit', edit_profesor_path(profesor) %></td> <td><%= link_to 'Destroy', profesor, method: :delete, data: { confirm: 'Are you sure?' } %></td> <td><%= link_to 'Alumnos', alumnos_path("prof" => profesor) %></td> </tr> <% end %> </tbody> </table>

This is my script :
$('#tabla').DataTable({ responsive: true });

@kinsbrunner
Copy link

Same happening to me....

Is there someone looking after this fixes??? Just to know...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants