- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-06-2014 03:09 PM
How would I phrase the EL expression to be "the file content of the document is empty", so there are no files in the actual content of the document. So far I have:
#{document.getProperty("file:content")=='empty'}
so this gets the file content, but the "'empty'" part is wrong.
Thank you!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-07-2014 10:53 AM
This works for me in a an Action Activation custom EL field:
#{currentDocument.file.content == null}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-07-2014 05:58 AM
Hy, perhaps like this : file:filename IS NOT NULL
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-13-2015 11:31 AM
I would try #{empty document.getProperty(“file
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-07-2014 10:53 AM
This works for me in a an Action Activation custom EL field:
#{currentDocument.file.content == null}
