Categories | Question details Back To List | ||
Grid HTML - Tooltip and Refresh Hi, I'm using grid component through html initialization method. Questions: 1) When i resize the browser, the grid width don't resize. How can i make it resize? 2) How can i hide the tooltip or change the default value? Thanks Answer posted by Stanislav on Jul 05, 2008 05:39 >>1) When i resize the browser, the grid width don't resize. How can i make it resize? Behavior enabled automatically if you are using auto-height mode or percent based sizes. In other case, you can force such behavior by grid._setAutoResize(); >>2) How can i hide the tooltip or change the default value? In grid 1.6 the value can be set in XML as <cell title="some">.... and changed as grid.cells(id,ind).setAttribute("title","new value"); |