Search
 
SCRIPT & CODE EXAMPLE
 

HTML

html table column filter dropdown

<div class="table-wrapper">
    <div class="table-title">
    </div>
        <div class="table-filter">
            <div class="row">
                <div class="col-sm-3">
                    <div class="show-entries">
                        <span>Show</span>
                        <select class="form-control">
                            <option>5</option>
                            <option>10</option>
                        </select>
                        <span>entries</span>
                    </div>
                </div>
                <div class="col-sm-9">
                    <div class="filter-group">
                        <label>Status</label>
                        <select class="form-control">
                            <option>Any</option>
                            <option>Completed</option>
                            <option>In Progress</option>
                            <option>To Run</option>
                        </select>
                    </div>
                <span class="filter-icon"><i class="fa fa-filter"></i></span>
                </div>
            </div>
        </div>
    <form method="post" action="activeInactive.php">
        <table class="paginated table table-striped table-hover">
            <thead>
                <tr>
                    <th>Test Name</th>
                    <th>Created By</th>
                    <th>Last updated</th>
                    <th>Test status</th>
                    <th>Actions</th>
                </tr>
            </thead>
            <tbody id="test_table">

                <?PHP

                $test_access = 0;
                while($row = mysqli_fetch_array($tests_under_user)){    
                    echo '<td width=250px; title="'.$testName.'"><a href="">'.$row['name'].'</a></td>';
                    echo '<td title="'.$row['created'].'">'.$row['created'].'</td>';
                    echo '<td title="'.$row['edited'].'">'.$row['edited'].'</td>';
                    echo '<td>In Progress</td>';
                    echo '<td>';
                    echo '<a href="" class="edit" data-toggle="modal"><i class="material-icons" data-toggle="tooltip" title="Edit"></i></a>';   
                    echo '<a href="" class="delete" name="delete" data-toggle="modal" Onclick="return ConfirmDelete()"><i class="material-icons" data-toggle="tooltip" title="Delete"></i></a>';
                    echo '<a href="" class="copy" name="copy" data-toggle="modal"><i class="material-icons" data-toggle="tooltip" title="Copy" style="color: #2874A6">file_copy</i></a>';
                    echo '</td>';
                }
                ?>
            </tbody>
        </table>
    </form>
</div>
Comment

PREVIOUS NEXT
Code Example
Html :: html datalist 
Html :: link node module in html 
Html :: what is the best programming language in 2021 
Html :: video values in html 
Html :: bootstrap tables 
Html :: inline heading and input 
Html :: copy to cllipboard the html element 
Html :: iconos html 
Html :: Formatting code with <pre tag in React and JSX 
Html :: yaml multiline string 
Html :: javascript send ethereum 
Html :: square in html 
Html :: mvc 5 required field validation not working 
Html :: starter bootstrap 
Html :: input text before element 
Html :: headings in html 
Html :: html attribute keyboard shortcut 
Html :: html style tag type 
Html :: loader 
Html :: html height percentage not working 
Html :: html interview questions github 
Html :: dropdown 
Html :: how can we change background in loop img in webpages 
Html :: tina4 form token example 
Html :: easy cubism landscape painting for beginners 
Html :: pug html adalah 
Html :: dropdown select with ul li stack overflow 
Html :: http://arnav.tcode.in/ 
Html :: Acrilic material 2 html 
Html :: create json from excel 
ADD CONTENT
Topic
Content
Source link
Name
6+8 =