10-09-2019, 09:29 AM
(This post was last modified: 10-09-2019, 09:30 AM by Alexandre Machado.)
Regarding (2) seems to be caused by a IE issue when accessing activeControl. It is fixed in our code base and next version will contain the fix.
Regarding (1), I'm still confused about the nature of your problem...
We did several changes to the grid rendering in order to make it more friendly to be used in conjunction with other JS libraries like DataTables and others. However I don't recall such change regarding the DIV.
Besides that, lets consider how the grid is built from HTML:
In case your grid component is named MyGrid, here is what we will have:
Now, let's say in a future version we decide do include one or more divs surrounding the table tag, like this:
it doesn't make any difference, does it? The key elements here (and the only ones that actually matter) are the outer div and the inner table, which can always be accessed through their IDs which won't change.
Regarding (1), I'm still confused about the nature of your problem...
We did several changes to the grid rendering in order to make it more friendly to be used in conjunction with other JS libraries like DataTables and others. However I don't recall such change regarding the DIV.
Besides that, lets consider how the grid is built from HTML:
Code:
<div ID="Name-of-your-IWGRID-component">
<table id="TBL+Name-of-your-IWGRID-component">
<--! here goes the grid content -->
</table>
</div>In case your grid component is named MyGrid, here is what we will have:
Code:
<div ID="MYGRID">
<table id="TBLMYGRID">
<--! here goes the grid content -->
</table>
</div>Now, let's say in a future version we decide do include one or more divs surrounding the table tag, like this:
Code:
<div ID="MYGRID">
<div>
<div>
<table id="TBLMYGRID">
<--! here goes the grid content -->
</table>
</div>
</div>
</div>it doesn't make any difference, does it? The key elements here (and the only ones that actually matter) are the outer div and the inner table, which can always be accessed through their IDs which won't change.

