
Christopher Abalos
- Total activity 21
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 5
- Subscriptions 4
Activity overview
Latest activity by Christopher Abalos-
Christopher Abalos commented,
Maybe try wrapping nombre + numid in a parseInt. parseInt(nombre + numid, 10)
-
Christopher Abalos commented,
Just out of curiosity, are you editing this template while inside of an item? If you edit a template when you're not inside of an item it uses placeholders for all the fields in the app. I think Po...
-
Christopher Abalos commented,
Hamid, Hmm. Very strange. I noticed in your one example that there might be a typo. var numid = parseInt(@Unique ID, 10); var nombre = parseInt(mynumber, 10); mynumber + numid It should be mynum...
-
Christopher Abalos commented,
Hamid, Does the Unique ID have anything other than number characters in it? Does it maybe have a prefix set on it like AB123?
-
Christopher Abalos commented,
Hi Hamid, Are you sure @mynumber is a number field? You might want to also try wrapping that in a parseInt to see what happens. You could also try and see what happens if you return "numid" by its...
-
Christopher Abalos commented,
Hi Hamid, Try using the parseInt() javascript function to convert from a string into an integer. var num_id = parseInt(@Unique ID, 10); http://www.w3schools.com/jsref/jsref_parseint.asp
-
Christopher Abalos commented,
Hi Ron, Try returning an undefined value in the else statement if (something == something_else) { d; } else { undefined; }
-
Christopher Abalos commented,
Just realized my header text example was wrong. Header Text Example var blank = @Name Of A Random Field 'Header Text\n=== \n'
-
Christopher Abalos commented,
Glenn, I'm not sure if this will help you or not but I figured out that you can insert headers and line breaks by using a calculation field and markdown. A calculation field has to reference anoth...
-
Christopher Abalos commented,
I agree with Glenn. Some basic headers would go a long way in organizing an app template. For example: We have a work request app that has fields that need to be filled out at the beginning and en...