Changeset 53 for trunk/Client/Forms
- Timestamp:
- Apr 3, 2012, 8:31:39 AM (13 years ago)
- Location:
- trunk/Client/Forms
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Client/Forms/UFormItemAdd.pas
r52 r53 64 64 NewProxy.Client := Client; 65 65 NewProxy.ObjectName := SelectedObject.Table; 66 NewProxy. SchemaName:= SelectedObject.Schema;66 NewProxy.Path := SelectedObject.Schema; 67 67 for I := 0 to Report.Columns.Count - 1 do 68 68 if not (TReportColumn(Report.Columns[I]).CustomType is TDataTypeRelationMany) then -
trunk/Client/Forms/UFormItemEdit.pas
r52 r53 128 128 Proxy.Client := Client; 129 129 Proxy.ObjectName := SelectedObject.Table; 130 Proxy. SchemaName:= SelectedObject.Schema;130 Proxy.Path := SelectedObject.Schema; 131 131 Proxy.Id := SelectedItemId; 132 132 for I := 0 to Report.Columns.Count - 1 do -
trunk/Client/Forms/UFormMenu.pas
r52 r53 142 142 Groups.Client := Core.System.Client; 143 143 Groups.ObjectName := ObjectGroupTable; 144 Groups. SchemaName:= Core.System.Client.Schema;144 Groups.Path := Core.System.Client.Schema; 145 145 Groups.Load; 146 146 for I := 0 to Groups.Objects.Count - 1 do begin … … 154 154 Objects.Client := Core.System.Client; 155 155 Objects.ObjectName := ObjectTable; 156 Objects. SchemaName:= Core.System.Client.Schema;156 Objects.Path := Core.System.Client.Schema; 157 157 Objects.Condition := '`Group`="' + Obj.Properties.Values['Id'] + '"'; 158 158 Objects.Load;
Note:
See TracChangeset
for help on using the changeset viewer.