Book a Demo

Author Topic: Suppress, modify or hide properties of an object  (Read 3512 times)

Monsieur

  • EA User
  • **
  • Posts: 142
  • Karma: +0/-0
    • View Profile
Suppress, modify or hide properties of an object
« on: December 04, 2014, 01:58:49 am »
Is it just me or EA bring new questions every hour of the day?

Is there a way to suppress of hide properties of an object? (I don't have a problem with the EA interface, but if i could change it just a little)
Example: Requirement > Properties...
How to suppress/hide the Difficulty field?
How to modify the Version field (in order to have a drop-down list for example)?

bonus:
Can we grey an attribute / field for a user role? (for example: "developper" can't change version of a requirement but he can see it grayed)

Thank you replier, who will bring me piece of joy by answering
« Last Edit: December 04, 2014, 02:02:09 am by damien.reche »

qwerty

  • EA Guru
  • *****
  • Posts: 13584
  • Karma: +397/-301
  • I'm no guru at all
    • View Profile
Re: Suppress, modify or hide properties of an obje
« Reply #1 on: December 04, 2014, 05:34:10 am »
This has been asked for many times (search the Suggestions) but Sparx was able to close it eyes ever since.

q.

Eve

  • EA Administrator
  • EA Guru
  • *****
  • Posts: 8110
  • Karma: +119/-20
    • View Profile
Re: Suppress, modify or hide properties of an obje
« Reply #2 on: December 04, 2014, 08:10:35 am »
For the bonus question, look at workflow scripts.

Code: [Select]
Public Function CanEditVersion()
      If WorkflowUser.IsMemberOf("Developer") Then
            CanEditVersion = False
      Else
            CanEditVersion = True
      End If
End Function

For the other questions. The only way is an add-in that overrides context double clicked.
« Last Edit: December 04, 2014, 08:11:58 am by simonm »