Friday 27 April 2018

Gridview Horizontal scroll using css on div in asp.net

//////////CSS

div.scrollTable
        {
            overflow: auto;
            white-space: nowrap;
        }
       
        div.scrollTable a
        {
            display: inline-block;
            text-align: center;
            padding: 14px;
            text-decoration: none;
        }



///////////////////// HTML


<div class="scrollTable">
 <asp:GridView runat="server" ID="GV_Reports" AutoGenerateColumns="true" Font-Names="Arial" CssClass="table table-striped table-bordered table-hover table-responsive" Style="width: 100%;"></asp:GridView></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 ,","...