Categories | Question details Back To List | ||
switching off tooltips in general Hello dhtmlx-Team, is there any possibility of turning off tooltips in general? Maybe in the same way I can write my own error handler with dhtmlxError.catchError(...)? Thanks in advance! Answer posted on Oct 18, 2007 03:50 Actually you can disable tooltips for necessary columns by grid.enableTooltips("false,false,false,true,false") false - disable tooltips for related column true - enable tooltips for related column Answer posted by Nick Armitage on Oct 20, 2007 11:04 I get a kind of tooltip when I drag a row - it shows me the ID of the row and this follows the mouse. Is there anyway this can be switched off? Answer posted on Oct 22, 2007 01:21 This is a "drag marker" You can redefine rowToDragElement to change it appearance mygrid.rowToDragElement=function(id){ return "row ID="+id; } |