CA Service Management

  • 1.  disable/ remove  "show in my workstreams"

    Posted Jan 10, 2017 06:33 PM

    We are not using Xflow/Search Server but customize Scoreboard shows check box to " "show in my workstreams"

    .

    Any way to disable/remove from the form ?

     

    Thanks.

     

    SKH



  • 2.  Re: disable/ remove  "show in my workstreams"

    Broadcom Employee
    Posted Jan 11, 2017 01:31 PM

    Santosh,

     

    This is a really good comment. I looked at the code of the form, usp_update_control.htmpl, and it looks like the code that adds the buttons are throughout. I don't seem to see any if/then statements that the button should only show if xFlow is installed (maybe I'm missing something though). 

    The form could be customized to remove all references, but I'm concerned that since there are so many references that there is a chance of some of the code removal interfering with something else. 

    This may be a good one to create a ticket off of though to see if Engineering can review further, the way it works doesn't feel right.



  • 3.  Re: disable/ remove  "show in my workstreams"

    Broadcom Employee
    Posted Jan 11, 2017 05:47 PM

    you can simply remove

    <span class='labeltext'>
    <label for="addStreamCheckBox">Show in my workstreams</<label>
    </span>

    from the usp_update_control.htmpl file. you would need to maintain this change if upgrade or install some patches later.



  • 4.  Re: disable/ remove  "show in my workstreams"

    Posted Jan 12, 2017 12:38 PM

    Thanks Chen.

    Also removed

    <span class='labeltext'>
    <label for="updateStreamCheckBox">Show in my workstreams</<label>
    </span> 

     

    but checkbox still remains without label now.

     

    skh



  • 5.  Re: disable/ remove  "show in my workstreams"
    Best Answer

    Broadcom Employee
    Posted Jan 12, 2017 02:30 PM

    sorry threw it out too quick...this

    <script>
    docWriteln("<input type=checkbox id=\"addStreamCheckBox\" value=\"addStreamCheckBox\">");
    </script>

    should be gone too, otherwise the checkbox will still be present



  • 6.  Re: disable/ remove  "show in my workstreams"

    Posted Jan 12, 2017 03:12 PM

    Thanks Chen

     

    also removed

    <script>
    docWriteln("<input type=checkbox id=\"updateStreamCheckBox\" value=\"updateStreamCheckBox\">");
    </script>

     

    So  removal of  4 entries worked.