1
0
-1
CommentAdd your comment...
2 answers
- 10-1
You can try the following jQuery in the Form Custom HTML field:
<script> $('.form-cell-value span').replaceWith(function() { var url = $.trim($(this).text()); return '<a href="' + url + '" target="_blank">' + url + '</a>'; }); </script>
Add your comment... - 10-1
You can try to use javascript scripting like
FormUtil.getField("document_url").click(function(){this.location = $(this).val(); });
to bind click event into navigating to a new page.
Put them into custom HTML form element.
Add your comment...