tuankhac / share-extras

Automatically exported from code.google.com/p/share-extras
0 stars 0 forks source link

Sample dashlet blows multi-column dashboard layout #48

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Deploy sample dashlet.
Add to the global dashboard in any position other than the last position of the 
last column.
View the dashboard.
All dashlets that follow the sample dashlet will be shown in the same column as 
the sample dashlet, even if they were supposed to be shown in a subsequent 
column. See the attached screenshot.

Original issue reported on code.google.com by jeffpotts01 on 25 Oct 2011 at 6:19

Attachments:

GoogleCodeExporter commented 8 years ago
Caused by an error in the dashlet FTL

<div class="dashlet">
   <div class="title">${msg("header")}</div>
   <div class="body scrollableList">
   <div class="body scrollableList"<#-- if args.height??> style="height: ${args.height}px;"</#if -->>
...
   </div>
</div>

Should be

<div class="dashlet">
   <div class="title">${msg("header")}</div>
   <div class="body scrollableList"<#-- if args.height??> style="height: ${args.height}px;"</#if -->>
...
   </div>
</div>

Fixed in v 0.2.1 release

Original comment by will.abson on 26 Oct 2011 at 1:04