Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Is there a way to limit Character count of String type in user macros?

alana fernando January 24, 2018

I want to limit Character count of String input type in a user macro i am creating. Is there a way to do this?

thank you in-advance for your time and attention. 

1 answer

1 accepted

1 vote
Answer accepted
Stephen Deutsch
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 24, 2018

How is the string getting input? Do you mean in the macro options or do you have a text box on the page?

alana fernando January 24, 2018

through Macro options

Stephen Deutsch
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 24, 2018

Unfortunately there doesn't seem to be any way to limit the macro options, but you could introduce an error message in the macro itself if the input is too long.

alana fernando January 24, 2018

Is there a known code to display an error message? 

Stephen Deutsch
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 24, 2018

You could probably do something like this:

#if ($paraminput.length() > 10)
<div class="aui-message aui-message-error">
<p class="title">
<strong>Error</strong>
</p>
<p>Macro parameter "input" must be 10 characters or less!</p>
</div>
#else
... rest of code ...
#end

This example is taken from AUI, the Atlassian User Interface guidelines:

https://docs.atlassian.com/aui/7.6.2/docs/messages.html

alana fernando January 24, 2018

Thanks @Stephen Deutsch 

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events