Field Description

Discussions about Forms Designer for SharePoint 2013 / 2016 and Office 365.
Locked
User avatar
DeanGross
Posts: 2
Joined: Wed Jun 07, 2017

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

User avatar
GregReno
Posts: 19
Joined: Tue Mar 14, 2017

07 Jun 2017

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

User avatar
Dmitry Kozlov
Site Admin
Posts: 1524
Joined: Thu Jun 07, 2012

08 Jun 2017

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 2547 times

Locked
  • Information
  • Who is online

    Users browsing this forum: No registered users and 2 guests