here is it :

$.ajaxSetup({
            dataFilter: function(data, type)
                        {
                console.log("orignal is "+data);
                                var temp = data.substring(100, data.length);
                                console.log("fixed is "+ temp);
                return data.substring(100, data.length);
                        }
                        });


$.ajax({           
  
  url: 'hardcoded-jsondata.cfm',  
  dataType: 'json',
  type: 'GET',  
  success: function(res){
  $("#example6grid").handsontable("loadData", res.data);
  }
});






>Can you post your current code again please?
>
>
>On Thu, Nov 22, 2012 at 8:50 AM, Mo Lay <[email protected]> wrote:
>
>> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-newbie/message.cfm/messageid:6006
Subscription: http://www.houseoffusion.com/groups/cf-newbie/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-newbie/unsubscribe.cfm

Reply via email to