Versions Compared

Key

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

...

Code Block
<dcc:repeater Data='=c.GroupBy(data,...)">
...
</dcc:repeater>

<dcc:repeater>
..
</dcc:repeater>

Sections

İsimleri header, footer, body, veya empty olan paneller tahmin ettiğiiz rollere sahip.

Code Block
	...
	<dcc:panel name="header">
		<table id="blue-table">
		<tr>
			<th>[$.tr:Kaynak;en:Source]</th>
			<th>[$.tr:Tablo;en:Table]</th>
			<th>[$.tr:Column;en:Column]</th>
			<th>[$.tr:Tanıyıcı;en:Recognizer]</th>
			<th>[$.tr:Sayı;en:Count]</th>
		</tr>
	</dcc:panel>
	<dcc:panel name="body">
		<tr>
			<td>[=context.Data.Group.OutputGeodiContent.Enumarator.DisplayName]</td>
			<td>[=Data.Group.EntryBackRef.OutputEntryProperties!=null?Data.Group.EntryBackRef.OutputEntryProperties.TableName:null]</td>
			<td>[=Data.Group.EntryBackRef.OutputEntryProperties!=null?Data.Group.EntryBackRef.OutputEntryProperties.ColumnName:null]</td>
			<td>[=context.Data.Group.RecognizerBackRef.Recognizer==null?string.Empty:context.Data.Group.RecognizerBackRef.Recognizer.DisplayName]</td>
			<td>[=d.GetCount()]</td>
		</tr>
	</dcc:panel>
	<dcc:panel name="footer">
		</table>
	</dcc:panel>
	<dcc:panel name="empty">
		<p id="exp-text">(!)No Content or any Findings Found in this project</p>
	</dcc:panel>
	...