Hi I have the following AutoQueryGrid
<AutoQueryGrid
id="hirerGrid-notes"
:filters="defaultFilters"
:store-key="null"
selected-columns="id,note,createdBy,createdDate"
table-style="verticalLines,uppercaseHeadings"
type="HirerNote"
>
Which uses the following dto
public class CreateHirerNote : ICreateDb<HirerNote>, IReturn<HirerNote>
{
[ValidateNotEmpty] public Enums.NoteType? NoteType { get; set; }
[ValidateNotEmpty]
[Input(Type = "textarea")]
public string? Note { get; set; }
[ValidateNotEmpty]
[Input(Type = "hidden")]
public int? HirerId { get; set; }
}
Iām having no luck when creating a new entry and trying to populate the HirerId which is hidden.
Can you suggest an approach/example I can implement?
Thanks