Can set an input field to a value at run time but not a connection field even using the field name from a web inspector:
$(document).on('knack-view-render.view_108', function (event, view, data) { $('input#field_15').attr('value', 'New Task'); // this works $('#view_108_field_38_chzn').attr('value', Knack.getUserAttributes().id); // this doesn't });
Any ideas?