
NeoInJS
Caspio Ninja-
Content Count
69 -
Joined
-
Last visited
-
Days Won
1
NeoInJS last won the day on July 15 2017
NeoInJS had the most liked content!
About NeoInJS
-
Rank
Advanced Member
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Thank @WatashiwaJin. However, I would still like my users to be able to change the field. I want to see that field populated with the First day of the month when the DataPage loads.
-
Hi - how can I set the my Date field in a Submission to have a default value set to the first day of the current month?
-
Hi - I have 4 Virtual fields in my submission form and ALL virtual fields have Dropdown form elements. When I select a value in one virtual field, I would like to set the other fields to have blank values. So my scenarios, 1. I chose a value(non-null) in cbParamVirtual1, the values in cbParamVirtual2, cbParamVirtual3, and cbParamVirtual4 would be blank or null. 2. I chose a value(non-null) in cbParamVirtual2, the values in cbParamVirtual1, cbParamVirtual3, and cbParamVirtual4 would be blank or null. 3. I chose a value(non-null) in cbParamVirtual3, the values in cbParamVirtual1,
-
DefinitelyNot31337 reacted to an answer to a question: Automatic check the Select All check box in Tabular report
-
Thank you! This worked!
-
Thank you! This worked!
-
How can I redirect my DataPage after a Bulk Edit process? I have a Tabular report and I have the Bulk Edit feature enabled. After, I clicked on the Update button in the BULK Edit Window, I want it to be redirected to the Submission DataPage.
-
NeoInJS reacted to a question: Bulk Edit Auto-Submit
-
Make the Table layout in Results DataPage invisible
NeoInJS posted a question in Styles and Localizations
I have a Tabular form. How can I make the Table results invisible?- 2 replies
-
- styles
- table setup
-
(and 1 more)
Tagged with:
-
I have a Tabular report in which Bulk Edit is enabled. I would like to have a Javascript that will allow to automatically put a check in the Select All check box and automatically click the BULK edit link. Is this possible?
-
I need assistance to add quotes("" "") to the value in my field. For example: Apple,Banana,Carrot. I want to have an output "Apple","Banana","Carrot"
-
How can I insert a character in a string using formula field
NeoInJS posted a question in General Questions
How can I insert a character in a string using formula field. For example, my record is 1256. I want to have a formula to insert ':' to make it 12:56. I can do it using Left() and Right() functions, but cis there another function where I can use to insert a character? -
I have report which shows that list of the trips of my drivers. Currently, I have two shifts for my drivers- Morning (7am-7pm) and Night (7pm-7am). My issue is I want to show a report where, when my night shift driver searches all his trips for a specific date, it will show me all the trips made from 7PM of the chosen day until 7AM of the next day. I am hoping for your assistance.
-
Copy value in one field to another when checkbox is clicked
NeoInJS posted a question in General Questions
I need assistance in implementing a JS when a check box is ticked. I have 2 address fields (Permanent and Present), and a "Same as" Checkbox field. I want to automatically copy the value of "Present address" field to "Permanent Address" field when the "Same as" Checkbox field. -
Hello - I need help in improving the JS code below. I would like to add data validation upon updating a record via In line Edit in a Tabular form. Any feedback is much appreciated. <script> document.getElementById("Mod0InlineEdit").onclick = function() { window.alert("check"); if(document.getElementsByName("Mod0InlineEdit")[0].value > 100 { window.alert("save!"); } else if (document.getElementsByName("Mod0InlineEdit")[0].value > 1000 { window.alert("do not save!"); return false; } else { window.
-
Javascript for Minimum Maximum Value
NeoInJS replied to steveruehlen's topic in User JavaScript and CSS Discussions
May I please ask your help how can this be implemented in a Tabular DataPage when editing a record? Thank you.- 4 replies
-
- javascript
- minimum value
-
(and 1 more)
Tagged with:
-
How can I update a text field that is hidden triggered by a rule?
NeoInJS posted a question in General Questions
How can I update a text field that is hidden triggered by a rule?