When I use lock column, margin is created in the right scroll of the grid. Did you know this problem?
How can I fix this problem?
Hello,
Thank you for reporting this. This behavior is a bug, and thus, I converted this ticket into a public bug report.
For the time being, as a workaround, you could manually resize the "content" table of the Grid. The code could look like:
//...
.Events(events => events.DataBound("onDataBound"))
//...
$(window).resize(function() {
setTimeout(function() {
updateGridContentWidth();
}, 1);
});
function onDataBound() {
updateGridContentWidth();
}
function updateGridContentWidth() {
var grid = $("#grid").data("kendoGrid");
grid.content.width(grid.content.width() + 1);
}
Finally, as a small token of gratitude for pointing us to this bug, I updated your Telerik points.
Regards,
Preslav
Progress Telerik