Versions Compared

Key

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

Generally, an announcement page consists of the following elements:

  1. The <breadcrumbs> widget allows navigating within the Portal pages structure.
  2. The announcement widget implemented as a bundle of the existing widgets, widget attributes, also server and client logic are used.
  3. The <previewList> widget allows displaying a brief list of announcements.

These widgets interact with each other.

Breadcrumbs configuration

...

To configure breadcrumbs correctly, it is preferable to use the attribute values as in the example below (type these values in the Template field of the <breadcrumbs> widget form):

Code Block
languagexml
themeEclipse
titlebreadcrumbs
linenumberstrue
<div class="announcement__breadcrumbs customized">
  <breadcrumbs>
</div>

After that, you can define the breadcrumbs view in the CSS field of this form:

Code Block
languagecss
themeEclipse
titleBreadcrumbs CSS
linenumberstrue
.customized {
   background  background: #FFFFFF;
  padding: 9px 0px 8px 16px;
}

...