Categories | Question details Back To List | ||||||||||||||
Onmouseover in attachfooter hides the data behind the grid Hi, I'm having a grid. I'm making use of images in the cells and also making use of the 'onmouseover' functionality for the images. On mouse i've written a function to display the html table. If i dont have footer in the grid then the html table is displayed on the table. If i have footer also which displays the image and also having the 'onmouseover' functionality to display the html table, then on moving the cursor over the image the table is displayed behind the grid. i.e. the html table within the range of the grid is hidden and only the table outside the area of the grid is displayed. How can this be solved? Please suggest the solution? Answer posted by Support on Jun 06, 2008 05:26 When grid has footers it sets position:relative to its container , as result your custom content must have z-Index value > 0 to be shown over grid. Just increase z-index value of your "mouseover" table - it must resolve issue. Answer posted on Jun 15, 2008 23:12 Thanks for the reply. Can you be a bit more specific on how to increase the z-index? I dont want to alter any of the files from the grid. Can this be handled by using the xml code? Suggest me the process. Answer posted on Jun 16, 2008 02:56 I've tried with <div style=""z-index:1;""><table> - - - - - </table></div> for the table that is being displayed on mouse over, Still i'm not able to get the desired value. What might be the problem? Answer posted by Support on Jun 16, 2008 06:00 >><div style=""z-index:1;""><table> - - - - - </table></div> Actually this must be enough to show data ( unless you are setting some z-index for grid's container as well. Attached sample uses the same approach and tooltip show over grid in all modern browsers. If problem still occurs for you - try to increase z-index value. Attachments (1)
Answer posted on Jun 16, 2008 22:51 Thanks for the reply, I was still not able get the issue resolved. I've set the z-index of grid table to be '0' and then i've set the z-index of the table(HTML Table) that is displayed onmouseover of the image to '1'. In the grid i have made use of attach footer functionality. Also i'm making use of smart rendering. If i take out the attach footer functionality from the grid then the table onmouseover is displayed without any problem. Guide me in this issue. Answer posted on Jun 17, 2008 02:45 The sample of the code that i'm making use of is given below. For HTML table that is displayed onmouseover sHeader = "<div id=""itable"" style=""z-index:1;""><table width=" 10 _ sString = sHeader & "<tr><td>Row1</td></tr>" & _ For image in the grid with mouseover function Temporary = "<img onmouseover=""Function1(getMouseoverTable(Parameter)\, event);"" onmouseout=""HideTable();"" " & _ The same variable above mentioned is used for displaying the image in the footer and also in the cells of the rows also.
Answer posted by Support on Jun 17, 2008 05:30 Please check attached sample - uses exactly same code for table creation and mouseover processing - correctly works in both IE and FF If problem still occurs for you - please provide any kind of sample where issue can be reconstructed. Attachments (1)
|