You are viewing limited content. For full access, please sign in.

Question

Question

Tool Tip for every item in the field

asked on December 23, 2014

the client wants to keep his form in one language but wants to provide tool tips in a different language for non-English speakers , i would like to know if we can put tool tip for item in the field, for e.g. a field Sex with two check box items Male & Female, i want to put a tool tip for both of these items in Arabic language so the person can understand the option pretty well. i can find the way to put a tool tip for the field name i.e. Sex in our eg. but not for the check box items.

0 0

Replies

replied on December 24, 2014

you can add a "checkboxcss" css class to the checkbox you want to add tooltips and use following JavaScript to add tooltips:

$(document).ready(
function() { 
 var label=$('.checkboxcss .cf-field label');
  label[0].title="test";
  label[1].title="test2";
  label[2].title="test3"
});

 

1 0
replied on November 3, 2021

Hi Xiuhong,

I'm using the classic designer in Forms 11 but not getting any results from the javascript you provided. Do you know if this was changed with version 11?

 

Thank you,

David

0 0
replied on May 11, 2018

Does anyone know how to do this?  The above code does not work.

You are not allowed to follow up in this post.

Sign in to reply to this post.