Home Analyst Portal
Options

Modifying "Editable Values" available to users when clicking Edit button on Grid View

David_DarlingDavid_Darling Customer IT Monkey ✭

Hi Experts, in a grid view our users can select an Incident and then click the "Edit" button on the bottom of the screen.  We would like to remove "Support Group" from this list of editable values.  How can that be achieved?

Thanks!

Best Answer

  • Options
    Geoff_RossGeoff_Ross Cireson Consultant O.G.
    Answer ✓
    Hi David,

    How is your javascript?
    Here's the line that will hide the Support Group element, but you'll need to trigger it to run on the click of the edit button.
    $('[data-template="multiEditFieldGroup"]>div:Contains(Support)').hide()
    Let me know if you need more help.

    Geoff

Answers

  • Options
    Geoff_RossGeoff_Ross Cireson Consultant O.G.
    Answer ✓
    Hi David,

    How is your javascript?
    Here's the line that will hide the Support Group element, but you'll need to trigger it to run on the click of the edit button.
    $('[data-template="multiEditFieldGroup"]>div:Contains(Support)').hide()
    Let me know if you need more help.

    Geoff
  • Options
    David_DarlingDavid_Darling Customer IT Monkey ✭
    Hi Geoff, indeed I require just a little more help on this one -- how do you think I would trigger this one when someone clicks the Edit button?  Couldn't figure it out.
Sign In or Register to comment.