Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #72.8K
~3K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for Michael_89

Hi, In function addRow(), you insert this code: function addRow(dataTable) { var table = document.getElementById("dataTable"); var rowCount = table.rows.length; if (rowCount < 4) { // limit the user from creating fields more than your limits var row = table.insertRow(rowCount); var colCount = table.rows[1].cells.length; row.id = 'row_'+rowCount; for (var i = …

Member Avatar for kinhkha1984
0
2K
Member Avatar for sashiksu

You try: <div class="form-group"> <input type="hidden" value="10" name="attribute[id][]"> <label for="Model Year">Model Year :</label> <input type="number" class="form-control" name="attribute_model" required="true"> <div class="invalid-feedback" style="text-shadow:none;">Please type Model Year </div> </div> <div class="form-group"> <fieldset id="Condition"> <input type="hidden" value="4" name="attribute[id][]"> <label for="Condition">Condition :</label> <div class="form-check-inline"> <div class="custom-control custom-radio"> <input type="radio" class="custom-control-input" id="New" name="attribute_value[]" required value="New"> <label …

Member Avatar for kinhkha1984
0
537

The End.