Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
233
HTML button in WebTab disappears
posted

I have tried to insert a html button into a WebTab page and it can be displayed normally. But I found that whenever I switch back to this tab from other tab pages, the button disappears. What's wrong with it ??

Thanks.

Parents
No Data
Reply
  • 1324
    posted

    Hello,

    It should work fine. Following code is working fine for me:

     

     

     

     

     

     

     

     

     

     

     

     

     

    <h:form>
     <ig:tabView>
     <ig:tabItem value="Tab1">
      <f:verbatim>
       <input type="button" value="Html Button 1" />
      </f:verbatim>
     </ig:tabItem>
     <ig:tabItem value="Tab2">
      <f:verbatim>
       <input type="button" value="Html Button 2" />
      </f:verbatim>
     </ig:tabItem>
     </ig:tabView>
    </h:form>

    In case if you are using the code differently, please provide your code snippets.

    Thank you

    Roshan

     

Children