I had the same issue on 13.1, no tracking table would be displaed.
The javascript failed on:
file: cforms/js/cformsadmin.js
line 508: jQuery('#cformsdata').on('change', ':input', function () {
find and replace:
jQuery('#cformsdata').on('change', ':input', function () {
focusedFormControl = this;
if( !trackChg ){
trackChg = true;
jQuery('#wp-admin-bar-cforms-SubmitOptions').addClass('hiLightBar');
//console.log("change @ "+this.id);
}
});
with:
if (jQuery('#cformsdata').length != 0) {
jQuery('#cformsdata').on('change', ':input', function () {
focusedFormControl = this;
if( !trackChg ){
trackChg = true;
jQuery('#wp-admin-bar-cforms-SubmitOptions').addClass('hiLightBar');
//console.log("change @ "+this.id);
}
});
}