Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Prompt title for RCPRequest

    I need to set a title for the prompt launched by a RCPRequest, I tried using

    Code:
    RPCManager.prompt = "text for body";
    RPCManager.title = "text for header";
    but it did not work. Any insights on that?

    #2
    The built-in prompt appearance hides the header by default. We recommend keeping this appearance, as it's simpler, and there's no way currently to change the header area to a different string on each request.

    However, if you wanted to modify this, you would make changes to the isc.Dialog.Prompt instance, which is a Window singleton. Use isc.addProperties() to do this, setting showHeader:true and title:"fixed title for all requests".

    Comment

    Working...
    X