fernandoxx 0 Denunciar post Postado Julho 10, 2019 Ola Pessoal, estou tentando inserir dois botoes EDIT e EXCLUIR na grid, conforme segue abaixo, estou aprendendo a usar datatable , quando inserido estes comandos, desalinha o topo da grid. Quem puder ajudar, fico grato. Obrg a todos que postarem ajuda. <div class="container"> <div class="table-responsive"> <table id="layoutGrid" class="table table-striped table-bordered"> <thead> <tr> <td>Codigo</td> <td>Produto</td> <td>Nome Interno</td> </tr> </thead> <?php while($row = mysqli_fetch_array($result)) { echo ' <tr> <td>'.$row["Es_Id"].'</td> <td>'.$row["Es_Produto"].'</td> <td>'.$row["Es_NomeInterno"].'</td> <td> <button class="showr">Editando registro </button> <a href=""> editar </a> </td> </tr> '; } ?> </table> </div> </div> </body> </html> Compartilhar este post Link para o post Compartilhar em outros sites
fernandoxx 0 Denunciar post Postado Julho 11, 2019 Pessoal, pesquisando em foruns, encontrei a solução <div class="container"> <div class="table-responsive"> <table id="layoutGrid" class="table table-striped table-bordered"> <thead> <tr> <td>Prod</td> <td>Descricao</td> <td>Acao</td> </tr> </thead> <?php while($row = mysqli_fetch_array($result)) { echo "<tr>"; echo "<td>" .$row['Id'] ."</td>"; echo "<td>" .$row['NomeI'] ."</td>"; echo "<td>"; echo "<a href='cadestoque.php?id=" .$row['Es_Id'] ."' title='Ver Registro' data-toggle='tooltip'> <span class='glyphicon glyphicon-eye-open'> </span> </a>"; echo "<a href='update.php?id=".$row['Es_Id'] ."' title='Editar Registro' data-toggle='tooltip'><span class='glyphicon glyphicon-pencil'> </span> </a>"; echo "<a href='delete.php?id=".$row['Es_Id'] ."' title='Deletar Registro' data-toggle='tooltip'> <span class='glyphicon glyphicon-trash'> </span> </a>"; echo "</td>"; echo "</tr>"; } ?> </table> </div> </div> </body> </html> Compartilhar este post Link para o post Compartilhar em outros sites