tmp:=" …Description… ";
@For(i:=1;i<=@Elements(descrpt_1);i:=i+1;
d:=descrpt_1[i];
tmp:=tmp+“ ”);
i have following code in a computed text passed through HTML.
to generate HTML text field and assign the value from ‘descrpt_1’ domino field.
now while displaying data in these HTML fields it displays only first word. it truncates the data after space is occured
eg… d= “this is test”
it will display only ‘this’
please help
thanks
Subject: HTML input type=text
You need to put your value in quotes, e.g.
Also, you might want to encode your field values as if there’s a quote in there then it will break your html.
cheers
Adam.
Subject: HTML input type=text
Hi Paaras,
What value contains in descrpt_1 field.
thanks,
VKS
Subject: RE: HTML input type=text
hi,descrpt_1 is multivalued text field of domino.
and it contains data as say…
“sensor element”;“refregerator funnel pipe”;“board to be use at ofiice”
etc…