Forum Replies Created
-
AuthorPosts
-
I’m glad you figured it out.
Alexander
Hi Corina,
What LCID (language) are you using in your SharePoint site?Alexander
I’m glad you figured it out. Please let me know if you encounter other oddities.
Alexander
Can you verify that you are editing the backend for NewForm or EditForm? Also, please ensure you have the correct “src” to the spjs_casc.js script in the DFFS backend.
Alexander
Hi,
Sorry for the delay. I will look into adding support for “OR these rules = true” in the trigger area to be able to support such a scenario.Here is a little code snippet you may use in the meantime – add it to the custom js area:
// Onclick $("#dffs__x0035_307Compliant, #dffs__x0035_311Compliant").find("input:checkbox").bind("click",function(){ customShowHideTab(); }); function customShowHideTab(){ var a = getFieldValue("_x0035_307Compliant"); var b = getFieldValue("_x0035_311Compliant"); if(a||b){ $("#dffs_tab_1").show(); }else{ $("#dffs_tab_1").hide(); } } // On load customShowHideTab();
Change “_x0035_307Compliant” and “_x0035_311Compliant” for your field names, and change “dffs_tab_1” to match the index (0-based) of the tab you want to toggle.
Alexander
Hi,
Sorry for the delay. I have not seen this before, but If you post the code here (as a txt file attachment) I can take a look to see if there is something obvious.Alexander
Hi,
Unfortunately I have no experience with using the publishing features in SP so I have never looked into this but your fix, looks pretty “light weight” and if it works, I would say it is spot on 🙂Alexander
I’m glad it worked out.
Alexander
Is it possible for me to log in and have a look?
If so, please send login information by email. You find my address in the “About me” tab above.
Alexander
It seems you have lost the CSS file. Check the CEWP and verify the link to this file.
Alexander
Hi,
This is entirely client side, and to add a new field, just go to your list settings and add it as you would to any other form. You also find the “Add new field” in the Misc tab if you are using SP2010 or 2013.If this is a general question on how to get into the DFFS configuration, this should be covered in the user manual.
Hope this helps you on the way,
AlexanderThis looks right. Do you see any errors in the developer console (hit F12 > console)?
Can you double check the path to the script file by going to the style library and right click the file and select “copy shortcut”?
Alexander
Can you post a screenshot of “DFFS_frontend_CEWP.html” and “DFFS_baclend_CEWP.html” here?
– mask the URL if you have used the full URL to your site.
Alexander
Hi,
The Cascading dropdown tab does not show in DispForm – could this be the issue?PS: I have changed this in the next release so that the tab shows, but you can still only use it in NewForm and EditForm.
Alexander
May 7, 2015 at 16:35 in reply to: Number column, when saved – inserts comma – read by DF as a decimal #7579Thank you for the feedback.
Alexander
-
AuthorPosts