How can I display the Help Text (Column Description) in a NIntex Forms field (e.g. calculated value)?

  • 2 September 2014
  • 9 replies
  • 56 views

Badge +1

I noticed that every sharepoint column description is automatically filled in to the "help text" property. Our customer now would like to Show this below the Input control as they are used to have it in sharepoint forms.

 

How can I achieve that?


9 replies

Userlevel 7
Badge +11

Hi Marco,

 

Displaying it permanently on the form is not currently in the product, but is something we have on the radar.  At the moment, if you put your mouse over the edit field, you'll find the description appears as a popup.

 

NintexFormsFieldDescription.png

cheers,

Vadim

Badge +2

I have an employee who would like help text, but instead of hovering over the field, they want a question mark image by the label.  They want to be able to hover over that image and have help text display.  I don't see anywhere in the image settings to add help text.  Is this something that is possible?

Badge +2

You can define the CSS class first:

190527_pastedImage_1.png

and then use javascript:

NWF$(document).ready(function()

{

NWF$(".tooltiptext").attr("title", "help text goes here");

});

Badge +2

This was exactly what I was looking for!

Thanks so much!

Badge +11

Hi

where would the javascript be placed?
I am trying to implement this but does not work.

as an example, I clicked on a field and given the "tooltiptext" in Class field,
then added a Script Editot webpart and pasted the above code.

Badge +11

ahh I got the solution from here happy.png

https://community.nintex.com/thread/2495

Badge +11

can you show us how to configure the field that excepts only in a certain format?

meaning; one of the fields in my form needs to consists of 00AA000000A

2 x digits + 2 letters + 6 digits + 1 letter

if { criteria is met } =  OK;

otherwise {show error box};

Badge +11

^[0-9]{2}[A-Z]{2}[0-9]{6}[A-Z]{1}

I think this seems to be working happy.png
maybe there is a shorter & better way and somebody might correct me

Badge +11

Another question here happy.png

how can I implement the below two format in 2 different fields:

PAGB.0XXXXX.XX.XXX

(the PAG.0 should be displayed by default and then the rest is just . and digits only.

2016XXAXXXXAA
(the year 2016 / 2017 / 2018  should be in the field followed by 2 digits + 1 cap Letter + 4 digits and + cap letters

Would appreciate your help.

Reply