INTERNAL: How to show modified value of a field using CalculatedValue field type and a Javascript
INTERNAL: How to show modified value of a field using CalculatedValue field type and a Javascript
When working with values which consist of “Word1 Word2”, you may prefer to separate this to different fields or remove “Word2” from the value.
<p>Chose the method which fits your goal: <a href="http://www.elated.com/articles/working-with-strings/">http://www.elated.com/articles/working-with-strings/</a> and modify the string data as per below example: <br/><br/> an example which removes "Word2" from string "Word1 Word2": Calculatedvalue would contain: [script]</p><p> '<%Original_Field_Name%>'.slice(0,-6);</script></p>