9 Answers, 1 is accepted
This error started to appear when Chrome enabled source maps by default. I'm not aware of any other browsers that complain about the missing files.
Your application should continue to work normally despite this error message.
That said, we plan to introduce source map files with the Q3 releases. In addition to eliminating this error this will also have the added benefit of easier debugging of live applications.
Apologies for the caused inconvenience.
T. Tsonev
Telerik
I have a Kendo UI grid with a detail grid that is working and does not get this error. I converted a Telerik server side grid to a Kendo UI client side grid and I get this error. My conversion has the error and no Network traffic occurs when opening the detail grid. Any ideas on how to work around this error to see if it is causing the problem I am seeing?
Thank you,
Nicole
This error shouldn't cause any loss of functionality, but please feel free to upgrade to the latest internal build just to be sure.
If this doesn't help, we'd appreciate more details about your issue in a separate thread/ticket.
T. Tsonev
Telerik
I see this error at 2013.2.716, but when I use 2013.1.514 and make no other changes, the problem goes away.
The browser does not change. My app code does not change, only the version of kendo in Scripts.
Susan
-----------
GET http://localhost:51388/Scripts/kendo/2013.2.716/jquery.min.map 404 (Not Found) kendo.all.min.js:11
at.getter kendo.all.min.js:11
(anonymous function) kendo.all.min.js:13
b.extend.each jquery.min.js:3
dt.extend.init kendo.all.min.js:13
lt.extend.init kendo.all.min.js:13
(anonymous function) bpms6-clientside-data.js:85
c jquery.min.js:3
p.fireWith jquery.min.js:3
b.extend.ready jquery.min.js:3
H jquery.min.js:3
It fails while trying to parse the opening curly bracket at the end of this line:
dataSource: new kendo.data.DataSource ({
in the following statement:
var wipViewModel = kendo.observable({
dataSource: new kendo.data.DataSource ({
transport: {
read: function (options) {
read(cdb, options.success);
},
create: function (options) {
create(cdb, options.data, options.success);
//console.log('the new address is ' + options.data.FacilityAddress);
read(cdb, options.success);
},
destroy: function (options) {
destroy(cdb, options.data, options.success);
}
},
schema:{
model: {
id: "Id",
fields: {
Id: { type: "integer", editable: false, title: false },
FacilityId: { type: "integer" },
FacilityName: " ",
FacilityAddress: { type: "text", validation: { required: true } },
AccountNo: " ",
CustomerId: { type: "integer" },
CustomerName: " " ,
CustomerContactName: " "
}
}
}
})
});
This is a Chrome feature which was enabled by default via some update. Here is a tweet from one of Chrome's evangelists: https://twitter.com/paul_irish/status/370250620428505088
More info can be found here: http://stackoverflow.com/questions/18365315/jquerys-jquery-1-10-2-min-map-is-triggering-a-404-not-found
Atanas Korchev
Telerik
This problem could be caused by a breaking change or some other problem. If possible you could show us your code so we can troubleshoot locally. Ideally you can prepare a jsbin.com demo which replicates the problem.
Regards,Atanas Korchev
Telerik