Hi,
I'm trying to come up with an alternative way to show the user that it is possible to add or remove records in a data window (DW).
Previously I have had two buttons (New (For insert), Delete) in the DW and that has worked fine. Below is an example of this.
To modernize the GUI I would like to get rid of the buttons and replace those with something like this:
where the plus/minus signs act as "buttons". The above is done using a computed field IF(isRowNew(),'+','-')
and then doing different colours (red, green) depending on the IsRowNew() function.
One option might be to have a popup menu when the user does a right-mouse-click, but I would prefer a more visual solution.
I'm interested in learning how others have approached this kind of GUI design task.
Thanks,
kp