Date Name Downloads
Aug 5, 2014 v3.4.0 358
Jun 10, 2014 v3.3.0 300
Apr 8, 2014 v3.2.0 320
Feb 21, 2014 v3.1.0 257
Dec 16, 2013 v3.0.1 137
Dec 10, 2013 v3.0.0a 34
Oct 18, 2013 v1.8.0 107
Sep 10, 2013 v1.7.0a 116
Jul 19, 2013 v1.6.0 163
Jun 4, 2013 v1.5.0 143
Apr 29, 2013 v1.4.0 117
Apr 5, 2013 v1.3.0 125
Feb 22, 2013 v1.2.0 263
Jan 22, 2013 v1.1.0 145
Jan 14, 2013 v1.0.1 162
v1.3.0
v1.3.0
Apr 5, 2013
Apache License
125

 

#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>