Wednesday 5 April 2017

Bootstrap datetimepicker not working inside table-responsive

// CSS

style="position: inherit; top: 30px;"


// HTML

<div class="table-responsive" style="min-height: 100px; padding: 0px 5px 5px; max-height: 450px;
                overflow: auto;">
                <table>
                    <tr>
                        <td>
                            <div class="grdCal" style="position: inherit; top: 30px;">
                                <asp:TextBox runat="server" ID="txt_Date" CssClass="form-control vochDatemimx" Text='<%# Bind("Date") %>'
                                    MaxLength="10" onkeypress="return Back_Del_Only(event);"></asp:TextBox>
                            </div>
                        </td>
                    </tr>
                </table>

            </div>

/// Result


No comments:

Post a Comment

Excel Sort values in ascending order using function TEXTJOIN

 Excel ::  Text ::  1,3,5,2,9,5,11 Result :: 1,2,3,5,5,9,11 Formula ::     TEXTJOIN ( ",",1,SORT(MID(SUBSTITUTE( A1 ,","...