cancel
Showing results for 
Search instead for 
Did you mean: 

remove OK and Cancel button from dialog?

esource
Champ on-the-rise
Champ on-the-rise
I've created a custom dialog with a jsp and backing bean.  In the upper right corner of the dialog however, an OK and Cancel button appear.  I don't see the components declared anywhere in my jsp.  How do I remove them?
2 REPLIES 2

savic_prvoslav
Champ on-the-rise
Champ on-the-rise
in xml file where you define that dialog .

<dialog name="some" page="/jsp/extension/some.jsp"
            managed-bean="someDialog" icon="/images/icons/google-ico-64.png"
            title-id="some-title" description-id="some description"
            show-ok-button="true"
putshow-ok-button =false and ok will not be there. cancel button you can not remove.

hope it helps.

esource
Champ on-the-rise
Champ on-the-rise
Yes, that helps very much!  Thank you!