Versions Compared

Key

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

...

Section
titleNew and Noteworthy
Section
titleDocument Impersonator

The document impersonator is a special kind of transclusion. Instead of fetching rendered content from a page, the impersonator fetches the unrendered content and renders it in its own context.

Live Template for a ImpersonatorImage Added

This feature is supported by the Transclusion Macro. More information is provided by the tip Impersonator - using Live Templates.

Section
titleData Attributes for Queries

In order to use the Remote Control feature more easily the Display Table Macro (and other macros supporting this feature) now renders its parameters as HTML data attributes. These attributes can be used by scripts to adjust a given query by just parsing the table element from the view.

Code Block
languagexml
<table
  ...
  data-projectdoc-query-maxhitcount="10"
  data-projectdoc-query-doctypes="blank"
  data-projectdoc-query-select="Name, Iteration, Short Description"
  data-projectdoc-query-sortby="Name-"
  data-projectdoc-query-rendercolumn="true"
  data-projectdoc-query-headertranslations="Name=Topic" 
  ...
  >
  <thead>
    ...
  </thead>
  <tbody>
    ...
  </tbody>
</table>

...