Field Binary in a new Angular Web Portal form

Custom fields (type Binary) have been configured to allow the management of some files for One Identity entities such as Person or UNSAccountB.
Creating new custom forms on the Angular Web Portal, how can these fields be managed? Are there any components that allow the upload of a file to be stored in the Binary field of the database?

This was a feature present in my old development of the old web portal (with web designer).

Thanks in advance,

Fabio

Parents
  • I have the same question it looks like the CDR editor handles all binary columns with the EditImageComponent.

    qbm\src\lib\cdr\default-cdr-editor-provider.ts

    if (type === ValType.Binary) {
          return this.createBound(EditImageComponent, parent, cdref);
        }

    There is an EditBinaryComponent but it's not used

    qbm\src\lib\cdr\edit-binary\edit-binary.component.ts

    export class EditBinaryComponent implements CdrEditor {
      /**
       * The form control associated with the editor.
       */
      public readonly control = new UntypedFormControl({ value: undefined, disabled: true });
      // TODO: TFS 806165 "imx-web: Editor für Binärdaten verbessern" umsetzen

    Will the CDR EditBinaryComponent be extended/implemented to support up-/download of various filetypes  in the near future?

Reply
  • I have the same question it looks like the CDR editor handles all binary columns with the EditImageComponent.

    qbm\src\lib\cdr\default-cdr-editor-provider.ts

    if (type === ValType.Binary) {
          return this.createBound(EditImageComponent, parent, cdref);
        }

    There is an EditBinaryComponent but it's not used

    qbm\src\lib\cdr\edit-binary\edit-binary.component.ts

    export class EditBinaryComponent implements CdrEditor {
      /**
       * The form control associated with the editor.
       */
      public readonly control = new UntypedFormControl({ value: undefined, disabled: true });
      // TODO: TFS 806165 "imx-web: Editor für Binärdaten verbessern" umsetzen

    Will the CDR EditBinaryComponent be extended/implemented to support up-/download of various filetypes  in the near future?

Children
No Data