Skip to content

Instantly share code, notes, and snippets.

@321hendrik
Last active August 19, 2016 12:47
Show Gist options
  • Save 321hendrik/fd7cd069bf2f00d5e7d88c62cd05fcd8 to your computer and use it in GitHub Desktop.
Save 321hendrik/fd7cd069bf2f00d5e7d88c62cd05fcd8 to your computer and use it in GitHub Desktop.
appcelerator ellipsized label
var ellipsizeLabel = Ti.UI.createLabel({
height: 20,
wordWrap: false,
horizontalWrap: false,
ellipsize: Ti.UI.TEXT_ELLIPSIZE_TRUNCATE_END,
textAlign: 'center',
width: 50,
text: 'extralongtestnamefortesting'
});
self.add(ellipsizeLabel);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment