


How can i do a Split in javascript code?
please help
Should be pretty straight forward, perhaps in the example I provided I forgot to enclose the value in quotes.
var language = English;
Views
Replies
Sign in to like this content
Total Likes
Hi @alnavarg
Could you please explain a bit more here.
As you can use conditional statements for fetching the desired records based on your filtering criterias.
Regards
A
Views
Replies
Sign in to like this content
Total Likes
i like to know how can i do a split in js code to do a selection from deliveries depends on the laguage of the recipient
Views
Replies
Sign in to like this content
Total Likes
I believe this may be what you are after, using advanced javascript, you can create multiple transitions and activate whichever one meets the condition.
var language = English;
if(language == "English"){
task.postEvent(task.transitionByName('english'));
} else {
task.postEvent(task.transitionByName('other'));
}
We have problems with the postEvent, in the log puts invalid argument
What we need to write in there?
Views
Replies
Sign in to like this content
Total Likes
Should be pretty straight forward, perhaps in the example I provided I forgot to enclose the value in quotes.
var language = English;
Thanks and this helps me in split a delivery in diffrents languages?
Like this Query --> Javascript --> delivery ???
Views
Replies
Sign in to like this content
Total Likes