#Unplugged XPages Mobile Controls v1.3.0#
##Release Notes##
- Fixed Date not displayed in Android footer bar
- Add CSS Controls - New non location specific CSS classes have been created for buttons and fieldsets. See demo database for examples
- Define classes to control left-aligned and menu-aligned. See demo database for examples
- Expandable fieldset control. New CSS classes defined to control fieldsets, see demo database for examples
- UnpNavigator page selector in custom properties now works correctly
- Last updated date/time now shows in footer. If current database has been replicated after all databases then latest time shows
- Editable fields can now be cleared with an iOS style (x) button using new deletable css class
- Fixed bug with Save and Cancel button display
- Form field labels now align vertically better
- All custom controls moved to a new Namespace*
- Fixed bug when using Mobile controls with OneUI v2.1 on a web browser
- Textarea text size has been increased
- Demo dialog box text size increased
- On initial sync, footer bar now displays (never) rather than 1/1/1970
- Fixed bug with alignment of view and navigator panels
- Last synced footer message format changed to be slightly shorter
- Changed size of New Response button
- Fixed viewport metadata tag to be comma separated
NB: Due to the Namespace changes of all custom controls, all XPages will need to be edited and two sets of changes made. Firstly, make sure that the new namespace is added to the xp:view tag: xmlns:unp="http://unplugged.teamstudio.com" Secondly, every reference to xc:unp tags needs to be updated to unp:unp:
So for example, the old format of:
<xp:view xmlns:xp="http://www.ibm.com/xsp/core"
xmlns:xc="http://www.ibm.com/xsp/custom">
<xc:unpFlatView insetData="true" detailColumn="Date"
summaryColumn="Topic" title="All Documents"
viewName="(Unp All Documents)" xpageDoc="Document.xsp" ajaxload="yes"
xp:key="facet_1" numberofrows="20" refreshmethod="pull">
</xc:unpFlatView>
</xp:view>
will now become:
<xp:view xmlns:xp="http://www.ibm.com/xsp/core"
xmlns:xc="http://www.ibm.com/xsp/custom" xmlns:unp="http://unplugged.teamstudio.com">
<unp:unpFlatView insetData="true" detailColumn="Date"
summaryColumn="Topic" title="All Documents"
viewName="(Unp All Documents)" xpageDoc="Document.xsp" ajaxload="yes"
xp:key="facet_1" numberofrows="20" refreshmethod="pull">
</unp:unpFlatView>
</xp:view>