bootstrap-3-timepicker icon indicating copy to clipboard operation
bootstrap-3-timepicker copied to clipboard

POST extra data

Open ktravelet opened this issue 9 years ago • 0 comments

First of all thanks a ton for this. Seems to works really well. I have one small non mission critical issue. Once I POST data there always a extra data being POST'ed. Extra stuff is bold below.

$_POST: Array ( [hour] => 05 [minute] => 00 [meridian] => PM [time_from] => 08:00 AM [time_to] => 05:00 PM [action] => create )

<form method="POST" action="">
    <div class="row">
        <div class="col-md-12 ">
            <table id="table" class="table table-striped">
                <thead>
                <tr>
                    <th>Time Picker From</th>
                    <th>Time Picker To</th>
                </tr>
                </thead>
                <tbody>
                <tr>
                    <td>

                        <div class="input-group bootstrap-timepicker">
                            <input id="timepicker1" type="text" name="time_from" class="form-control input-small">
                            <span class="input-group-addon"><i class="glyphicon glyphicon-time"></i></span>
                        </div>

                    </td>
                    <td>

                        <div class="input-group bootstrap-timepicker">
                            <input id="timepicker2" type="text" name="time_to" class="form-control input-small">
                            <span class="input-group-addon"><i class="glyphicon glyphicon-time"></i></span>
                        </div>

                    </td>
                </tr>
                </tbody>
            </table>
        </div>
    </div>

    <input type="submit" class="btn btn-primary" name="action" value="create">

</form>

ktravelet avatar Sep 24 '15 22:09 ktravelet