
geoffdude
Caspio Ninja-
Content Count
59 -
Joined
-
Last visited
-
Days Won
2
geoffdude last won the day on February 12 2020
geoffdude had the most liked content!
About geoffdude
-
Rank
Advanced Member
Recent Profile Visitors
-
I'm trying to figure out a way to change any character submitted to data table field, that's not 0-9 or A-Z/a-z to something else, using formula logic. I'm new to formulas, and this is what I'm playing with .. but it's not working as desired. It only runs the first "When" statement and ignores the others. CASE When Charindex ('''',[@field:promo], 0) <> 0 Then Replace([@field:promo], '''','') When Charindex ('é',[@field:promo], 0) <> 0 Then Replace([@field:promo], 'é','e') When Charindex ('ü',[@field:promo], 0) <> 0 Then Replace([@field:promo], 'ü','u') ELS
-
Reject submission without proper flow
geoffdude replied to ReadyOneIndustries's topic in User JavaScript and CSS Discussions
Still a bit confusing to me .. however, how would the product "fail" lining inspection? What process in the flow validates/checks for a "pass" or "fail"? -
Hide HTML Blocks in Detail Page
geoffdude replied to rush360's topic in User JavaScript and CSS Discussions
If you want to hide the info on result page of some kind, give your DIV an ID (use "box1") then try this: <script type="text/javascript"> document.addEventListener('DataPageReady', window.onload = function(){ var x = document.getElementsByName("InsertRecordZip3")[0].value; if (x == "") { document.getElementById("box1").style.display = 'none'; alert("Nothing entered - box hidden"); } else { document.getElementById("box1").style.display = 'block'; alert("Word entered - box not hidden"); } }); </script> <!-- add a style tag, with "box1" display set to 'block' -
kpcollier reacted to a post in a topic: Reject submission without proper flow
-
Reject submission without proper flow
geoffdude replied to ReadyOneIndustries's topic in User JavaScript and CSS Discussions
Can you provide a wire-frame of the flow that way we can see what's supposed to happen. Like: Product = GARMENT X Serial Number = 123456 Emp Id = TestID-00001 Station = Choices (Station A, Station B, etc) Then create the wire-frame for us to look at ... like this example below, except show your form fields w/names and what should happen with it's use (It will help us to figure out the flow/logic.) -
Date Picker in iFrames Is Off Alignment
geoffdude replied to kpcollier's topic in User JavaScript and CSS Discussions
Excellent .. happy to help. -
kpcollier reacted to a post in a topic: Date Picker in iFrames Is Off Alignment
-
Date Picker in iFrames Is Off Alignment
geoffdude replied to kpcollier's topic in User JavaScript and CSS Discussions
My first thought is you CSS in causing errors. The form CSS may be the issue .. but it's hard to determine without seeing the form live. Some things to try on the code you provided are as follows: <style> .ui-resizable-helper { border: 1px dotted gray; } ul#menu .activeMenu { background: #bb3033; } ul#menu { width: 100%; background: #21618C; font-size: 10px; font-family: "Arial", sans-serif; font-weight: bold; list-style-type: none; margin: 0; padding: 0; text-align: center; } ul#menu li { display: block; display: inline-block; margin: 4px 0 0 0; padding: 5px 15px 5px 15 -
JS Change Event Firing on Failed Form Submission
geoffdude replied to SDSteve's topic in User JavaScript and CSS Discussions
You may need to create a copy of the form, then remove all the JS associated with that form and start testing by introducing portions of the script back into the test-form. You can also create a 3rd form copy to just focus on the fields that use the scripts, and run tests on these new forms to see when the error occurs. - It's a pain, but part of the developer process at times. Hunt and peck so to speak... without messing up your OG form. -
You need to pass the "Virtual7" value as a "parameter" in your form's advance setting for that field- such as: On exit: Pass field value as parameter: [@Virtual7] Then on your report page have that virtual field set as display only, but also have it set to receive the parameter: Receive value or parameter: External Parameters = [@Virtual7]
-
Date Range on Submission Form
geoffdude replied to Elderberg's topic in User JavaScript and CSS Discussions
I'm on 20.3 .. strange huh? Update: I had to clear my cache to see the new version changes. It's all good now. -
Date Range on Submission Form
geoffdude replied to Elderberg's topic in User JavaScript and CSS Discussions
Is "Loops" even available for tasks anymore? I don't see it.