I am able to get the XPages extension slider control working perfectly on my local machine. However, when I try to run the same page on the server it fails with an error 500 (even with the option switched on to show the informative XPages error screen)
Does anyone know where to check? I have the database signed with rights to use the server.
<?xml version="1.0" encoding="UTF-8"?><xp:view xmlns:xp="http://www.ibm.com/xsp/core" xmlns:xe="http://www.ibm.com/xsp/coreex"
xmlns:xc="http://www.ibm.com/xsp/custom">
<xp:table><xp:tr>
<xp:td style="background-color:rgb(255,255,255)">
<xe:djVerticalSlider id="djVerticalSlider2"
value="#{sessionScope.djSlider2}" maximum="10" minimum="0"
style="margin: 5px;width:75px; height: 200px" pageIncrement="0"
discreteValues="11">
<xp:this.converter>
<xp:convertNumber integerOnly="true"></xp:convertNumber>
</xp:this.converter>
<xe:djSliderRuleLabels id="djSliderRuleLabels8"
container="leftDecoration"
style="height:200px;width:25px;font-size:100%" count="6"
labels="0,1,2,3,4,5,6,7,8,9,10">
</xe:djSliderRuleLabels>
<xe:djSliderRule id="djSliderRule9"
container="leftDecoration" style="height:200px;width:5px"
count="11">
</xe:djSliderRule>
<xe:djSliderRule id="djSliderRule10"
style="height:200px;width:5px" count="11"
container="rightDecoration">
</xe:djSliderRule>
<xp:eventHandler event="onChange" submit="true"
refreshMode="partial" refreshId="computedField16">
</xp:eventHandler>
</xe:djVerticalSlider>
</xp:td>
<xp:td>
Value:
<xp:text escape="true" id="computedField16" value="#{sessionScope.djSlider2}">
<xp:this.converter>
<xp:convertNumber type="number" integerOnly="true">
</xp:convertNumber>
</xp:this.converter>
</xp:text>
</xp:td></xp:tr></xp:table>
<xp:br></xp:br>
<xp:br></xp:br>
</xp:view>