after gird bind border issue with grid
Attachment: borderissue_2fe50f61.rar
Thanks for contacting Syncfusion support.
We have checked the provided code and screenshot. We have used the similar code example and called the windowonresize method after binding data to Grid, its working fine.
The reason for the issue might be the windowonresize method is called before data bound to Grid. So we suggest you to use the windowonresize method in actionComplete event which triggers every Grid action complete.
Please refer to the following sample and code example, and Help document,
Sample: http://jsplayground.syncfusion.com/dc213lmw
Help Document: http://help.syncfusion.com/js/api/ejgrid#events:actioncomplete
|
<div id="targetsGrid" ej-grid e-datasource="data" e-columns="columns" e-scrollsettings-width="null" , class="gridStyle" e-allowresizing="true" e-allowkeyboardnavigation="true" e-allowscrolling="true" e-allowsorting="true" e-minwidth="550" e-isresponsive="true" e-actioncomplete="actioncomplete" e-allowgrouping="true" e-groupsettings-groupedcolumns="groupedcol" e-allowfiltering="true" e-filtersettings-filtertype="excel"></div> </div>
$scope.actioncomplete = function (args) { if (args.requestType == "refresh") { this.windowonresize(); this.refreshScrollerEvent(); } } |
If we misunderstood your requirement or the scenario wrongly, please modify the provided sample to be issue reproducible and send.
Regards,
Balaji Marimuthu
- 1 Reply
- 2 Participants
-
BB Bharat Buddhadev
- Sep 14, 2015 07:28 AM UTC
- Sep 15, 2015 09:19 AM UTC