We want the sort arrow image to appear at left corner of th

We want the sort arrow image to appear at left corner
of the column header instead of right corner. What should be changed to
position the sort images during runtime at left corner ?


Not possible through public API, but you can adjust
the next line in source code:


dhtmlxfrid.js; setSortImgPos
function; line 694 in latest code


           
this.sortImg.style.left =Number(pos[0]+wdth-13)+“px”; replace with


           
this.sortImg.style.left =Number(pos[0]+13)+“px”;<o:p></o:p>