Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
New DIV in IWGrid HTML code.
#5
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:


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.
Reply


Messages In This Thread
New DIV in IWGrid HTML code. - by brsoft - 09-26-2019, 09:37 PM
RE: New DIV in IWGrid HTML code. - by brsoft - 10-04-2019, 09:44 AM
RE: New DIV in IWGrid HTML code. - by brsoft - 10-07-2019, 08:38 PM
RE: New DIV in IWGrid HTML code. - by Alexandre Machado - 10-09-2019, 09:29 AM
RE: New DIV in IWGrid HTML code. - by brsoft - 10-09-2019, 04:22 PM
RE: New DIV in IWGrid HTML code. - by brsoft - 10-09-2019, 07:46 PM
RE: New DIV in IWGrid HTML code. - by brsoft - 10-24-2019, 02:35 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)