-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Labels
BugFP: In DevelopmentSync status with associated Feedback ItemSync status with associated Feedback ItemSEV: LowjQuery
Milestone
Description
Bug report
Reproduction of the problem
- Reference kendo.all.min.js and kendo.all.min.js.map in a project
- Add a basic Grid:
<div id="grid"></div>
<script>
// The dataSource is initialized as a stand-alone widget that can be bound to the Grid.
var dataSource = new kendo.data.DataSource({
transport: {
read: {
// The remote endpoint from which the data is retrieved.
url: "https://demos.telerik.com/kendo-ui/service/products",
dataType: "jsonp"
}
},
pageSize: 10
});
$("#grid").kendoGrid({
// The dataSource configuration is set to an existing DataSource instance.
dataSource: dataSource,
pageable: true
});
</script>
- Open the browser's dev tools Source tab and place a breakpoint (e.g., on line 3715).
Current behavior
The breakpoint is added at the last line (326079) of the file.
Expected/desired behavior
The breakpoint is added at the desired line (e.g., 3715).
Environment
- Kendo UI version: 2023.3.1010
- jQuery version: x.y
- Browser: [ Chrome XX]
Metadata
Metadata
Assignees
Labels
BugFP: In DevelopmentSync status with associated Feedback ItemSync status with associated Feedback ItemSEV: LowjQuery