Skip to content

HowToDisableModel

iraichi edited this page Apr 24, 2015 · 18 revisions

How enable/disable inserting, editing, deleting for records

The following instructions apply to List Controllers.

Normally the function bar of a List Controller shows the following buttons:

AllButtons.png

if you set IsReadOnly: True at model level the standard "insert", "Edit" and "Delete" buttons will disappear in all List Controller using that model.

In case you have different Views using the same Model and you want to allow different operations, than set the node Controller/GridPanelController in the view:

For example. You can allow just Viewing and Inserting records with the following code:

Type: Data
Controller: List
  GridPanelController:
    AllowViewing: True
    PreventDeleting: True
    PreventAdding: True
    PreventEditing: False

you will obtain the following situation:

ViewingEditing.png

In case you need to prevent editing or deleting for a specific record in accordance with some fields' values you have to:

  1. write Delphi code in Rule.pas. Inherit the EditRecord procedure, check data values and, in case raise an exception as in the following simple example extracted from a real-world project:
type
  TinterventionEdit= class(TKRuleImpl)
  public
    procedure EditRecord(const ARecord: TKRecord); override;
  end; 
....
implementation
procedure TinterventionEdit.EditRecord(const ARecord: TKRecord);
begin
  inherited;
  if ARecord.FieldByName('STATUS').AsString = 'APPR' then
    RaiseError(You can't modify an already approved intervention');
end;
  1. Implement the Rules node in the model:
Rules:
  interventionEdit:

Details record

In case of master/detail form you can enable/disable inserting, editing, deleting even for detail records. You have to specify AllowViewing, PreventDeleting, PreventAdding, PreventEditing subnodes for the detail in DetailTables/Table/Controller node of the view.

Clone this wiki locally