- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
I cannot find the original form but is this the result you want?
Where...
// form1.page1.subform1.tf::calculate - (JavaScript, client)
var str = "";
if (form1.page1.subform1.nf1.isNull) {
str = str;
}
else {
str = "Q1 " + form1.page1.subform1.nf1.rawValue + "\n";
}
if (form1.page1.subform1.nf2.isNull) {
str = str + "\n";
}
else {
str = str + "Q2 " + form1.page1.subform1.nf2.rawValue + "\n";
}
if (form1.page1.subform1.nf3.isNull) {
str = str + "\n";
}
else {
str = str + "Q3 " + form1.page1.subform1.nf3.rawValue + "\n";
}
Steve
Views
Replies
0 Likes
Total Likes