DHTMLX Pro version 5.0.2
I have a grid made for tablets so the gui is big in general.
However, the first line in the grid (and sometimes the last line) is not selectable with a mouse click.
I can select it by code and by the arrow keys on the keyboard.
[code]gMtrlListGrid = gMtrlListLayout.cells(“b”).attachGrid();
gMtrlListGrid.setImagePath(“/include/dhtmlx/skins/material/imgs/”);
gMtrlListGrid.setColumnIds("MtrlArtnr,MtrlDescr,MtrlFPlats,MtrlSats,MtrlQty,MtrlPlock,MtrlSlut,MtrlStatus,MtrlTrack,MtrlId");
gMtrlListGrid.setHeader("Art.nr,Benämning,F.plats,Satsnr, Antal,Att plocka,Slut,Status,Track,ID",
["", "", "", "", "text-align:right;", "text-align:right;", "text-align:center;", "text-align:center;", "", "text-align:right;"]);
gMtrlListGrid.setInitWidths("200,330,90,180,100,120,60,90,60");
gMtrlListGrid.setColAlign("left,left,left,left,right,right,center,center,center,right");
gMtrlListGrid.setColTypes("ro,ro,ro,ro,ron,ron,ro,ro,ron,ron");
gMtrlListGrid.setColSorting("str,str,str,str,no,no,str,str,no,no");
gMtrlListGrid.setStyle("font-size: x-large;", "font-size: x-large; height: 46px;", "", "");
gMtrlListGrid.init();
gMtrlListGrid.setColumnHidden(cMtrlTrack, true);
gMtrlListGrid.setColumnHidden(cMtrlId, true);[/code]