vendredi 5 juin 2020

I cannot run the tab and checkbox together

What do you think my problem is here? The section that I designed as an mail inbox. data-toggle = Tab "tabb" doesn't work. if I do tab check box does not work. How do I fix this problem?

<div class="table-responsive mailbox-messages">
    <table class="table table-hover table-striped">
        <tbody class="nav">
        <form id="deleteMessageForm" method="post" action="">
        @csrf
        @foreach($pagitaneDataArray as $oMessage)    <!-- inbox_table den Gelen mailler sıralanır. -->
        <tr class="w-100" data-toggle="tabb" href="#mail"> <!--Her tablo satırına id verilir.-->
            <td class="pl-2 pr-0">
                <div class="checkbox-toggle">
                    <input type="checkbox" name="message[]" value="">
                    <label for=""></label>
                </div>
            </td>
            <td class="mailbox-name pl-0 pr-lg-0"><a
                        href="">{!! $oMessage->fromName !!}</a></td>
            <td class="mailbox-subject pl-2 pr-0">
                <b>{!! str_replace('Re: ', '', $oMessage->subject) !!}</b></td>
            <!--RE: ile başlar ise o kısım silinir.-->
            <td class="mailbox-date pl-2 pr-0"></td>
        </tr>
        @endforeach
        </form>
        </tbody>
    </table> <!-- /.table -->
</div> <!-- /.mail-box-messages -->



Aucun commentaire:

Enregistrer un commentaire