Hello, right now I’m using DHTMLX Suite 7.1.7 implementated In a Vue 2 Cli project and I while developing some features with DHTMLX Grid I found 3 problems:
-
When removing the option autoWidth and adjust from the grid declaration the grid just simply stops appearing In my page, so I’m forced to have It in a certain width in order to at least see my grid
Declaration:this.grid = new GridDHX(idgrid, { columns: columns, autoWidth: true, adjust: true, selection: "simple", data: data, css: "my_grid_css", });
-
The css dont applies, i want to change the color of the grid but the classes dont do anything and it seems like grid is rendered before the of vue
-
Hide column not working ( this.grid.hideColumn(0); ) (Is still like that ?)
I used the examples provided by DHTMLX but they don’t work on my case, what should i do? Thanks!