0

I have created a batch job using the SysOperation framework, I want to set title of the form which shows the parameters of the job. How can I do that?

The title is already shown is the name of the service class and the entry point method. This is the dialog enter image description here

4

1 回答 1

0

you must add this method :

protected ClassDescription defaultCaption()
{
    ClassDescription ret = 'your caption';
    return ret; 
}
于 2020-08-28T09:20:09.797 回答