Hello Team,
I have form with mix of html rows having input fields like text box, date picker and radio buttons, I want to map business object attributes to those inputs fields and also form contains direct attributes placed, is there a way I can map the fields in html rows to save data back to database, here is my html row inputs which I have, I’m able to find the data, when I’m trying to save it, it is not working as expected, is there anyway I can map these attributes properly to save it to database.
<!-- Client Info Section -->
<div class="pl-15 pr-15">
<div class="form-row">
<div class="form-group client-name col-md-3 pl-0">
<label for="client_name">Client Name</label>
<input type="text"
name="PortfolioQuarter.sc_ClientFullName"
id="client_name"
value="<<PortfolioQuarter.sc_ClientFullName>>"
class="form-control read-only">
</div>
<div class="form-group date-field col-md-3">
<label for="iprams_date">Iprams Review Date</label>
<input
name="PortfolioQuarter.IpramsReviewDate"
id="iprams_date"
value="<<PortfolioQuarter.IpramsReviewDate>>"
class="form-control">
</div>
<div class="form-group quarter-field col-md-3">
<label for="quarter_end">Quarter Ending</label>
<input
name="PortfolioQuarter.sc_QuarterEndDate"
id="quarter_end"
value="<<PortfolioQuarter.sc_QuarterEndDate>>"
class="form-control read-only">
</div>
<div class="form-group value-field col-md-3">
<label for="ending_value">Ending Value</label>
<input
name="PortfolioQuarter.EndingValue"
id="ending_value"
value="<<PortfolioQuarter.EndingValue>>"
step="0.01"
class="form-control">
</div>
</div>
</div>
It really great help if someone experience this issue