12345678910111213141516 |
- <!-- Licensed Materials - Property of IBM
- BI and PM: Mobile
- (C) Copyright IBM Corp. 2007, 2012
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. -->
- <div class="prompt" ${prompt}
- <%
- if( prompt.defaultRange ){
- if( prompt.defaultRange.startUseValue != null ) out << " first='${prompt.defaultRange.startUseValue}'"
- if( prompt.defaultRange.endUseValue != null ) out << " last='${prompt.defaultRange.endUseValue}'"
- }
- out << ">"
-
- if( !label ) out << "<label>${prompt.name}</label>"
- %>
- </div>
|