- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Hi Niall,
Thanks for that. The reason i'm trying to go to global variables is I won't actually be displaying the output onscreen i will be using the variables to enable me to produce output that then go a custom back end process.
so you end up with code like
switch (this.rawValue) {
case "1":
{output.rawValue = A1.value + a3.value + FirstNameUppercase (this is where i need help) + " " + LastNameSentenceCase (help) + A2.value}
break;
case "2":
to produce an output field containing a text string that is responsive to user selections (above just a crude demo of course)...
hence the need for Upper and Sentence case variables output from each of the various peoples who's names are collected etc.....
so that would permit the above code to be reduced to
case "1":
{output.rawValue = A1.value + a3.value + say we call the variable clientFNUC + " " + clientLNSC + A2.value}
break;
case "2":
ie there will never be a box that displays this data just a post from the input raw.value to a variable which is integrated into various hidden output fields that go off for back end processing....
thanks for the help
Views
Replies
Total Likes