As followup on Ticket ID: 1431527 screenshots and sample code provided.
"The GridColumnBuild does not have an implementation for the Locked functionality against the dynamic type. The class that gets serialized and sent to the client-side would not have a property for the locked column, therefore, there would be no locked columns."
Can you please examine this functionality?
Best,
Peter
Hi Peter,
Thank you taking the time to submit a feature request.
Until the feature gets implemented, I would suggest making use of the following workaround:
1. Use the setOptions() method in the document.ready() event:
<script>
$(function(){
var columns = $("#grid").getKendoGrid().columns;
columns[0].locked = true;
$("#grid").getKendoGrid().setOptions({ columns: columns, autoBind: true });
});
</script>
2. Set the AutoBind() property to false, initially. This should be used in order to avoid sending two requests:
.AutoBind(false)
Best regards,
Tsvetomir
Progress Telerik