Hi Anders,
Thanks for contacting Syncfusion support.
We have analyzed your query and achieved your requirement by using resizeMode as control property of resizeSettings in grid. Now when resizing any of the column it tends to resize the particular column.
Please refer the below code example,
…
<script type="text/javascript">
$(function () {
$("#Grid").ejGrid({
// the datasource "window.gridData" is referred from jsondata.min.js
dataSource: window.gridData,
allowResizing: true,
resizeSettings: { resizeMode: "control" },
pageSettings:{ pageSize: 15},
columns: [
…
]
});
}); |
We have also prepared a sample that can be available from the below link,
Please let us know if you need further assistance.
Regards,
Manisankar Durai.