Field Description
Posted: 07 Jun 2017
After adding a field to a form, how can I get the text from the Column Description to show up on the form
Design SharePoint forms with tabs, complex tables, accordions, sub-lists, and 3rd party columns
https://spform.com/forum/
Code: Select all
$(document).ready(function(){
$("span[id$='Progression']").html('<center><b>Progression</b></center>'); // Row count
$("span[id$='DPDate1']").html('<center><b>Date</b></center>');
$("span[id$='DPDate2']").html('<center><b>Date</b></center>');
$("span[id$='DPNA']").html('<center><b>N/A</b></center>');
$('label[for*=Field_DPNA_ctl00]').hide(); //Hide checkbox label - N/A
$('[id*=Repeating_DP]').mouseover(function() { // .click() is an option as well
$("span[id$='Progression']").html('<center><b>Progression</b></center>'); // Row count
$("span[id$='DPDate1']").html('<center><b>Date</b></center>');
$("span[id$='DPDate2']").html('<center><b>Date</b></center>');
$("span[id$='DPNA']").html('<center><b>N/A</b></center>');
$('label[for*=Field_DPNA_ctl00]').hide(); //Hide checkbox label - N/A
});
});