wijgrid not defined

wijgrid not defined

Hi All,
 
I have a table in my aspx file and I am trying to populate it using json and an ajax call. This works perfectly in another web project but I get wijgrid not defined when I have copied the same code in a different project. Here is my ajax code :-
  1. function GetCICData() {

    $.ajax({

    type: "post" ,

    async: false ,

    url: "CICSequence.aspx/GetCICs" ,

    contentType: "application/json; charset=utf-8" ,

    dataType: "json" ,

    success: function (r) {

    cicdata = r.d;

    cicdata = jQuery.parseJSON(cicdata)

    $( "#grdCICs" ).wijgrid({

    showFilter: true ,

    allowPaging: true ,

    scrollMode: "vertical" ,

    pageSize: 17,

    pagerSettings: { position: "bottom" },

    data: cicdata,

    columnsAutogenerationMode: "none" ,

    columns: [

    { dataKey: "CI_REFNO" , headerText: "CI_REFNO" , dataType: "number" , visible: false },

    { dataKey: "CI_REFERENCE" , headerText: "Reference" , dataType: "string" , width: 60 },

    { dataKey: "CI_DESCRIPTION" , headerText: "Description" , dataType: "string" },

    { dataKey: "CI_AREA_CODE" , headerText: "Area Code" , dataType: "string" },

    { dataKey: "CI_STATUS" , headerText: "Status" , dataType: "string" , width: 50, showFilter: false },

    { dataKey: "CI_REVISION_NO" , headerText: "Revision No." , dataType: "number" , dataFormatString: "n0" , width: 60, showFilter: false },

    { dataKey: "CI_LOCKED" , headerText: "Locked" , dataType: "boolean" , visible: false },

    ]

    });

    },

    error: function (xhr, status, error) {

    alert( 'GetCICData - ' + xhr.responseText);

    }

    });

    }
Can anyone please help as I don't have a clue. I have added the jquery references in my master page:-
 
  1. < head id ="Head1" runat ="server">

    < title > Gateway HQ </ title >

    < link rel ="shortcut icon" href ="~/Images/Web+bogman+icon-1TR.ico"/>

    < link href ="/CSS/Master.css" rel ="stylesheet" type ="text/css" />

    < script src ="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js" type ="text/javascript"></ script >

    < script src ="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/jquery-ui.min.js" type ="text/javascript"></ script >

    < script src ="js/JScript.js" type ="text/javascript"></ script >

    < script src ="js/Master.js" type ="text/javascript"></ script >

    < asp : ContentPlaceHolder id ="head" runat ="server">

    </ asp : ContentPlaceHolder >

    </ head >
Thanks in advance,
 
Jiggy