I am kind of new to the world of ASP.NET (especially MVC), I am trying to build up a page based on the configuration below:
<headInput>
<defaultColumns>
<column name="Shift" validation="" unit="" required="" />
<column name="Level" validation="" unit="" required="" />
<column name="Value" validation="" unit="" required="" />
<column name="Time" validation="" unit="" required="" />
</defaultColumns>
<additionalCols1>
<column name="Rate" validation="" unit="" required="" />
</additionalCols1>
<additionalCols2>
<column name="Online" validation="" unit="" required="" />
<column name="Type" validation="" unit="" required="" />
</additionalCols2>
</headInput>
I have been trying to understand on how I can use the above configuration to generate labels as columns and then generate the row with data in columns.
I tried looking at many examples but haven't been able to figure out if it is even possible or not. Any help would be appreciated.
Thanks.