Switch to desktop version  
TAGSSI - Printable Version

+- Ewon Technical Forum (https://techforum.ewon.biz)
+-- Forum: Development (https://techforum.ewon.biz/forum-50.html)
+--- Forum: Custom Web Pages/viewON/Talk2M Visualization (https://techforum.ewon.biz/forum-55.html)
+--- Thread: TAGSSI (/thread-982.html)



TAGSSI - Amitselva - 18-07-2019

In dash board we are using  <%#TagSSI,w%>  for showing some text content,
in this , That Tag has  200 characters , but in web page  it show's  very less  number of characters  
and after that text it shows  dot ,dots("....") only.

But i want to show all the characters.please give an solution.


RE: TAGSSI - valentin.joigneau - 24-07-2019

if you're using a javascript section, you can make a function like this:

function getVal(_tagName){
getEwonTagVal(_tagName);
var backVal = tags[_tagName].value;
return backVal;
}



and when you call if :
getVal("myTagName"), it will return you the value (without issues in the length for me)


RE: TAGSSI - simon - 29-07-2019

Hi,

Indeed, the TagSSI cuts the string tags after a certain number of characters, which is not normal. I will report that to the R&D.
If you use the viewON API, you can retrieve your Tag values in Ajax like http://192.168.120.92/rcgi.bin/vows/readVars?_vars=stringtag1,stringtag1
I know it is more complex but I do not have other work-around... Sorry for the inconvenience.

Simon