How to customize the tick mark(submit) and a wrong mark(cancel) that comes with metastorm form when deployed.
For example i wanted use a different name in place of tick mark or wrong mark,please suggest me what should be done in this case?
You can customize the look of the web client by adjusting the default theme. This is documented under the Administration Guide -> Web Client Configuration -> Customizing the Web Interface. It seems like the submit and cancel buttons were ommitted from this section. I'll make sure it is included within the documentation in the future. To modify this, you can adjust the CSS for the theme and the images used. The theme CSS can be found in a default installation at "C:\Program Files\Metastorm\BPM\Web\app_themes\Default\Images\GeneralButtons". You should see a section that looks like:
/* SUBMIT/CANCEL BUTTONS */ div.closeContainer{margin-right:5px;} input.submit, input.cancel { width:42px; height: 26px; border: 1px solid #707070; cursor: pointer;} input.submit { background: #3d3d3d url('Images/GeneralButtons/submit_02.gif') center top; } input.submit:hover { background: #5d5d5d url('Images/GeneralButtons/submit_02.gif') center -24px;} input.cancel { background: #3d3d3d url('Images/GeneralButtons/cancel_02.gif') center top;} input.cancel:hover { background: #5d5d5d url('Images/GeneralButtons/cancel_02.gif') center -24px;}
Iam not able to find the following code content,can you please tell me in detail
* SUBMIT/CANCEL BUTTONS */ div.closeContainer{margin-right:5px;} input.submit, input.cancel { width:42px; height: 26px; border: 1px solid #707070; cursor: pointer;} input.submit { background: #3d3d3d url('Images/GeneralButtons/submit_02.gif') center top; } input.submit:hover { background: #5d5d5d url('Images/GeneralButtons/submit_02.gif') center -24px;} input.cancel { background: #3d3d3d url('Images/GeneralButtons/cancel_02.gif') center top;} input.cancel:hover { background: #5d5d5d url('Images/GeneralButtons/cancel_02.gif') center -24px;}
Were you not able to find the CSS? I might have been unclear in the previous post. The CSS is in the drectory "C:\Program Files\Metastorm\BPM\Web\app_themes\Default".