I have a ContentPane
whose contents
property is set to a bunch of text (no additional widgets). I want to be able to truncate the text after, say, 3 lines and append a "read more" link that will expand the ContentPane vertically to display the rest of the contents.
Here is what I have:
<div data-dojo-type="dijit/layout/ContentPane"
data-dojo-attach-point="truncateMe"
data-dojo-props="content: 'Way more than three lines of text'">
</div>
Is there a way to set the max number of rows in a ContentPane and truncate the text accordingly with an option to expand the pane?
Thanks!