Custom field URL

Peter Novak February 10, 2014

i need to copy this url value to custom field(i am using jiras default CUstom field[text field] and Custom Field URL Field):

com.sygic.aura://coordinate|17.31102|48.268569|drive

but problem is this character: "|"

how can i fix this? please :)

2 answers

1 accepted

0 votes
Answer accepted
Peter Novak February 10, 2014

yes, it is not valid char for URL, so i used escape character |

result:

com.sygic.aura://coordinate|17.31102|48.268569|show

works for me :)

0 votes
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
February 10, 2014

It's not a valid url, so it's not going to work with a url field (or browsers for that matter)

You'll need to use a text field if you want consistent formatting, or move to using valid urls (As you can probably guess, | is not a valid url character - at the very least it should be embedded in a string or escaped in some way, but even then, only as part of a parameter)

Peter Novak February 10, 2014

i needed to use escape character |

thanks

Suggest an answer

Log in or Sign up to answer