Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The Show Full Fact Value function and its window can be used to examine text block tags more closely in the Auditor. You can find this function in the context menus of the Presentation-Linkbase and the TableView. If this menu item is not displayed, the selected entry is probably not a text block tag. The window is divided into two views. The Text Viewand theHTML View. Additionally there is a menu settings button to configure the different views.

...

The Text View shows the tagged content of the fact value. Although for text blocks this content can also include HTML formatting information, this information is hidden. To see the actual and complete fact value deactivate the menu Text View -> Remove click the settings button and activate Remove HTML.

Image RemovedImage Added

HTML View

The HTML View also shows the fact value, but here the HTML formatting information is applied to the display. This makes tables, paragraphs and other text formatting visible. If tables are recognized in the HTML, they are highlighted by a colored border. This highlighting can be deactivated in the menu. HTML View -> Highlight settings of this window. Select Highlight XHTML tables with colored borders. The color of the highlighting can be changed in the Settings in the main menu of the application. It is identical to the color used to highlight the tables in the iXBRL Viewer.

Because the HTML view displays only the fact value, the display may look very distorted. Formatting information defined elsewhere in the report may be missing if only the HTML contained in the fact is displayed. A very large font, or text elements that overlap are the result. The program tries to counteract this and to prepare the HTML content in such a way that an optimal display is possible. Strictly speaking, however, the display then no longer corresponds to the actual tagged value. These optimizations can therefore be deactivated. In the menu settings via the items HTML View -> Remove table formatting and HTML View -> remove Remove span + div formatting.

Image RemovedImage Added

Why is the content overplapping or not fully visible? 

...



Code Block
languagexml
<!DOCTYPE html>
<html>
	<body>
		<p style="position: absolute; top: 125px; left: 125px; width: 300px; 
		background-color: rgba(0,0,255,.2);font-size:20px;">
	<b>This		<b>
				This is the first paragraph.
			</b> 
			Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod 
			tempor invidunt ut  	labore et dolore magna aliquyam erat, sed diam voluptua. 
			At vero eos et accusam et justo duo dolores et ea rebum.
		</p>
		<p style="position: absolute; top: 10px; left: 10px; width: 300px;
		 background-color: rgba(255,0,0,.2);font-size:20px;">
	<b>This			<b>
				This is the second paragraph.
			</b>
	 	Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod 
		tempor invidunt ut labore et dolore 	 magna aliquyam erat, sed diam voluptua.
		At vero eos et accusam et justo duo dolores et ea rebum. 
	</p>
</body>
</html>


Result in BrowserHTML Code

In the example shown, the paragraphs have been positioned so that they overlap. Also worth mentioning is the fact that the first paragraph in the code comes before the second paragraph, but is displayed after it. This is caused by the positioning.

See also: Removing HTML and Unicode