Hello, how can I set a tooltip on hover for a toggle (yes/no) field?
Hello @AlanNelsonFD,
Welcome to Plumsail Community!
You can add a tooltip using the code:
fd.spRendered(function() {
var fieldInput = $(fd.field('FieldName').$el).find('input');
$(fieldInput).attr('title', 'This is Title field, input Title, please!');
});