Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Jquery not working in the web server

  • This topic is empty.
Viewing 1 post (of 1 total)
  • Author
    Posts
  • #208150
    SK100
    Participant

    Hi Friends,

    I am trying to implement gridview scroll found at http://gridviewscroll.aspcity.idv.tw/ (gridViewScroll with JQuery) to freeze the Header row and 1st 6 columns. The jquery works fine when checked in localhost and scrolling is also working fine. But when uploaded to the server and checked live, its not picking the jquery.The scrollbars are not there and the grid as a whole appears on the page. I tried different methods to access the jquery and changed the folder names also, but no use. Why is this jquery URL not picked. Is it getting conflicted with any other jquery in the server. Some one please help me. Its really urgent for me. Below is few of my code to access the jquery’s.Thanks.

    <asp:Content ID=”Content1″ ContentPlaceHolderID=”headcontent” runat=”Server”>

    <script src=”http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js&#8221; type=”text/javascript”></script>

    <script src=”http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.1/jquery-ui.min.js&#8221; type=”text/javascript”></script>

    <script src=”Scripts/gridviewScroll.min.js” type=”text/javascript”></script>

    <link href=”css/GridviewScroll.css” type=”text/css” rel=”styleshet” />

    <style type=”text/css”>

    </style>

    </asp:content>

    <script type=”text/javascript”>

    $(document).ready(function () {
    gridviewScroll();
    gridviewScrollGrdDataEntry();
    $(‘#ctl00_MainContent_GvViewCopyFreeze’).css(‘height’, ‘76%’);
    $(‘#ctl00_MainContent_GrdDataEntryPanelHeaderContentFreeze’).css(‘height’, ‘84%’);
    });
    </script>

Viewing 1 post (of 1 total)
  • The forum ‘JavaScript’ is closed to new topics and replies.