Page 1 of 1

Field Description

Posted: 07 Jun 2017
by DeanGross
After adding a field to a form, how can I get the text from the Column Description to show up on the form

Re: Field Description

Posted: 07 Jun 2017
by GregReno
You could try this

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
 
	}); 
});

Re: Field Description

Posted: 08 Jun 2017
by Dmitry Kozlov
It should appear immediately after adding in the column settings. If, of course, you meant the description below:
ColumnDescription.png
ColumnDescription.png (14.78 KiB) Viewed 2549 times