Categories | Question details Back To List | ||
We want the sort arrow image to appear at left corner
of the column header instead of right corner. What shou... 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 ? Answer posted on Mar 05, 2007 09:31 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"; Answer posted by Embre (Support) on Dec 04, 2014 22:20 If you haven't found the needed information there and still looking for a solution, you will find the additional help checking ajax toolkit demo and download ajax controls. |