DHTML client

Tracking # Description Workaround
21609 When a window that contains a Blox is opened with a JavaScript window.open() call, dialogs that are launched from the window do not close automatically and are left open when the window is closed. Adding code such as the example below will fix the problem:
<script>
  window.onbeforeunload = function(){
    presentBlox.closeAllDialogs(); 
  }
</script>
20813 When a GridBlox's border color for data cells, column headers and row headers is set in <themeName>_DHTML.css and the Blox is exported to PDF, the background color of the entire GridBlox is also changed. None. Setting a table's border is a Microsoft® attribute. There is no public standard that applies to this property, and the underlying PDF engine does not support this attribute. See this document on http://msdn.microsoft.com.
19068 From the Tools > Internet Options menu of Internet Explorer, changing the Check for newer versions of stored pages option setting on the General > Temporary Internet Files > Settings panel from the default value of Automatically to Every visit to page can, in rare situations, cause the browser to draw columns incorrectly. Leave the setting at its default value of Automatically. This is an issue with Internet Explorer.
17281 Altering the !DOCTYPE element to specify the Strict declaration causes the grid to display incorrectly (for example, <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Strict//EN">)). Either do not specify a !DOCTYPE element, or use the Transitional or Frameset declarations.