• Help with enableModifiedFlag and simpleValuePicker

    By leon ta 1 decade ago

    Hi,

    Im having problem with enableModifiedFlag=True and simpleValuePicker. Each time i click on the simpleValuePicker it think I am exiting the page.

    Is there one to stop this from happenning?

    thank you for your prompt assistance

    leon

    • I see this too

      By sean cull 1 decade ago

      I see this too

    • Can you please be more precise?

      By Philippe Riand 1 decade ago

      I need your code and the exact steps to reproduce the issue. I tried the code bellow in the demo db but didn't see any wrong behavior.

       

      <?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" enableModifiedFlag="true">
      
       
      
      1: <xp:inputText id="inputText1"></xp:inputText>
      
      <br/>
      
      2:<xp:inputText id="inputText5"></xp:inputText>
      
      <xe:valuePicker id="valuePicker5" for="inputText5">
      
      <xe:this.dataProvider>
      
      <xe:simpleValuePicker>
      
      <xe:this.valueList><![CDATA[a
      
      b
      
      c
      
      d
      
      e
      
      f]]></xe:this.valueList>
      
      </xe:simpleValuePicker>
      
      </xe:this.dataProvider>
      
      </xe:valuePicker>
      
      </xp:view>