Edit row button in an editable grid form doesn't work anymore

Hi, I read in another thread the tip regarding mouse over showing text over a column field label. So I tried this in a editable grid view form label field:
<A TITLE=“Test”>test</A>
If you put your mouse over the label of the column it shows “Test” but the edit button of the row doesn’t work anymore.

Any ideas?

Joe

Where you do this? Probably you have son JS error. Check your web console

I did a little testing. If you use single quotes for the mouse over text it works.

Joe

Maybe you are doing something like:

{myField} = "<A TITLE="Test">test</A>";

But in this way, you have to escape double quotes inside like this.

{myField} = "<A TITLE=\"Test\">test</A>";

Or change your double to single

{myField} = '<A TITLE="Test">test</A>';

Hi Giu,
I didn’t use any php code anywhere. I just put this little piece of html code in the label field of a form. Editable grid form->Fields->Label

Joe

I just try to imagine why you need this

Hi Giu, let me disclose this secret :wink:
I have a very long description name for this column about 120 characters. So I put in this label code the short description and the full description. In the grid the short description is shown in the column label. If you move your mouse over the column label the full description is shown.

Joe