Skip to content
Snippets Groups Projects
Commit 6a680ea0 authored by RafaFP's avatar RafaFP
Browse files

Added a width limitation in the same way it is done on the UploadPresentationRenederer.mxml.

Added the Truncate attribute to the label, labels too long to be displayed will now be truncated and appended wit "...".
The full name of the file will be displayed as tooltip on mouseOver for all the downloadable files in the Download Window.

refs #1852
parent a340103f
No related branches found
No related tags found
No related merge requests found
......@@ -18,7 +18,7 @@
]]>
</mx:Script>
<mx:Label id="presentationNameLabel" text="{data.name as String}" styleName="presentationNameLabelStyle" width="80%"/>
<mx:Label id="presentationNameLabel" width="{this.width-downloadBtn.width-30}" text="{data.name as String}" toolTip="{data.name as String}" styleName="presentationNameLabelStyle" truncateToFit="true"/>
<mx:Button id="downloadBtn" label="{ResourceUtil.getInstance().getString('bbb.filedownload.downloadBtn')}"
toolTip="{ResourceUtil.getInstance().getString('bbb.filedownload.downloadBtn')}"
styleName="presentationUploadShowButtonStyle"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment