I have this input from date calendar
- <input ID="fromdate" value="dd/mm/yyyy" runat="server" clientidmode="static" />
now i use gridview desing with the refrence of this<link rel="stylesheet" href="//code.jquery.com/ui/1.12.0/themes/base/jquery-ui.css"><link rel="stylesheet" href="/resources/demos/style.css"><script src="https://code.jquery.com/jquery-1.12.4.js">script><script src="https://code.jquery.com/ui/1.12.0/jquery-ui.js">script><script>
http://gridviewscroll.aspcity.idv.tw/Demo.aspx
and from this i use this
- <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js">script>
- <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.1/jquery-ui.min.js">script>
- <script type="text/javascript" src="../Scripts/gridviewScroll.min.js">script>
- <script type="text/javascript">
- $(document).ready(function () {
- gridviewScroll();
- });
- function gridviewScroll() {
- $('#<%=GridView1.ClientID%>').gridviewScroll({
- width: 660,
- height: 200
- });
- }
- script>
how i solve this
Bikesh SrivastavaPosted Jul 22, 2016, 3:42 AM