Search the Community
Showing results for tags 'inline edit'.
-
I have been pounding my head against a wall on this one. I need to do data validation for two fields in a tabular report data page in two different scenarios. I have been successfully using the following code to validate one field: <script> var nameOfField = "InlineAddWhole_Value_Perc_Split_to_Agent"; document.addEventListener('DOMSubtreeModified', function(){ if(document.getElementsByName(nameOfField)[0]) { document.getElementsByName(nameOfField)[0].addEventListener('change', function(){ var cash= document.getElementsByName(nameOfField)[
- 1 reply
-
- inline edit
- data validation
-
(and 1 more)
Tagged with:
-
Hi I've tried using this on my footer but it does not work. My datapage is a results page with inline edit set to yes. Below is my script: <SCRIPT LANGUAGE="JavaScript"> function setTime(){ var v_chk=document.getElementById('EditRecordConfirmed').checked; if(v_chk==true) { document.getElementById("EditRecordDateConfirmed").value="[@cbTimestamp]"; } } document.getElementById("caspioform").onsubmit=setTime; </SCRIPT> Thanks. Ivy
- 5 replies
-
- inline edit
- timestamp
-
(and 1 more)
Tagged with:
-
I have three data pages on one web page (WordPress site): 1 input form, one tabular datapage with inline editing enabled, and one pivot datapage all working from the same table. When the user inputs data via the input form, the AJAX feature works great and both other two reports update instantaneously without a page refresh (quite impressive). However, if the user chooses to go over to the tabular datapage and edit or delete an item, then the AJAX updating doesn't work for updating the pivot table right below it. Is there something wrong with my setup or is this not even an option/possibl