table 50100 CarBrand { DataClassification = ToBeClassified; Caption = 'Car Brands'; fields { field(1; "Car Brand"; Code[20]) { DataClassification = ToBeClassified; Caption = 'Brand'; } field(2; Description; Text[50]) { DataClassification = ToBeClassified; Caption = 'Desc.'; } field(3; "Picture of Logo"; Media) { DataClassification = ToBeClassified; Caption = 'Logo'; // Subtype = Bitmap; } keys { key(PK; "Car Brand") { Clustered = true; } } }
page 50100 CarBrand { PageType = List; ApplicationArea = All; UsageCategory = Lists; SourceTable = CarBrand; Caption = 'Brands...'; layout { area(Content) { repeater(General) { field("Car Brand"; Rec."Car Brand") { ApplicationArea = All; ToolTip = 'The brand'; } field("Description"; Rec.Description) { ApplicationArea = All; ToolTip = 'Some desc.'; } field("Picture of Logo"; Rec."Picture of Logo") { ApplicationArea = All; ToolTip = 'The logo'; } } } } }
Answers
And if you use a blob, can you use the ondrilldown trigger to trigger the import file screen?
Thank you very much.
Best regards,
Morten