I am a new user to Abp Framework. Abp performs many operations automatically. This is great, you don't need to do anything for most transactions.
But how can I implement a structure like the one below without breaking the existing rules, localization and security controls in the UI part?
Order (Customer, OrderDate, Currency, ExchangeRate, DeliveryDate, Notes...),
OrderDetails(StockCode, Explanation, Price, Quantity, DiscountRate,... multi-line entry)
I design a complex UI and ensure its seamless validation and registration on the database side.
<abp-dynamic-form abp-model="Bank" asp-page="/Banks/CreateModal">
<abp-modal>
<abp-modal-header title="@L["NewBank"].Value"></abp-modal-header>
<abp-modal-body>
<abp-form-content />
<div class="row">
<div class="col">
Hello Col1
</div>
<div class="col">
Hello Col2
</div>
<p>My Form Content</p>
</div>
</abp-modal-body>
<abp-modal-footer buttons="@(AbpModalButtons.Cancel|AbpModalButtons.Save)"></abp-modal-footer>
</abp-modal>
</abp-dynamic-form>
The existing structure is intervened with the above code. But how to change the form size and width controls or adjust the localization?
How can I make an example design like Order OrderDetails regarding this?