I attended a Consultation Forum Webinar today and worked with Zachary. Over all the meeting was great but now I am unable to make any of the things we discussed work.
I would like to have JavaScript populate a column with the row number so that I can capture that number for a look up into SQL. Zachary provided a some script but did warn me that it was rough. The only problem is I am unable to get it to work at all. Please help.
function rowNumbering() {
currentRow = 1;
$('.cf-table-block tbody tr').each(function () {
$(this).find('.rowNum input').val(currentRow);
currentRow++;
});
}
Once I can populate the numbers I will attempt to apply this article from answers https://answers.laserfiche.com//questions/48879/Auto-Fill-Button.
First hurdle is populating the row number in the table.