I would like to create a proforma invoice template in my Blazor Server application.
Here is the actual template that I will export to PDF:
If I use an HTML editor, can I set some of the text by default (6,7,8)? and is there a way that I can use grids (4) in the editor? I am open to guidance.
Is it possible to use DataGrid without a type? I mean I just want to use a data grid for adding rows rather than retrieving/inserting data. At the end of the day, I would like to generate a PDF from this HTML editor.
The DataGrid does nor retrieves nor inserts data anywhere - it will add, delete and update rows in a collection with specific item type. The developer is responsible to handle various DataGrid events to update a database with some service methods.