Reply To: Set Field Value for Radio Button?
This sounds strange. Can you verify that you can set the value in a text field? – are you sure this rule is triggered? Alexander
View ArticleReply To: Rule with a 'Between' Operator
There is currently not a “between” operator, but you can try setting up two rules – one for “is less than” and one for “is greater than”. For the first you set no “actions” and for the second one you...
View ArticleReply To: Printing TABS
I’m sorry, but this is a bit tricky to answer. If you can add a screenshot of the DispForm you are trying to print I might be able to help. My best guess would be to add some CSS that triggers on...
View ArticleReply To: Hyperlink On List Form
I guess you need to add a custom JS function in the Misc tab and trigger this from a rule. Let me know if you need help with an example. Alexander
View ArticleReply To: Hyperlink On List Form
I have figured this out using the buttons on the form within the Heading field which calls a JS function. Thanks for the response!
View ArticleConditional Highlighting
I see that it is possible to change the color of a specific tab or field from CSS, but is it possible to change the color of a field based upon its value? For instance, if value > 10, shade the...
View ArticleReply To: VLookup In URL Hidden Option not working
Hi, The new v2.0 of vLookup sets a class “spjshidden” to the field, and if you update DFFS_frontend.css to v4.04 the hidden fields will be “respected” by DFFS. Please note that v2.0 of vLooup must be...
View ArticleReply To: Rules Limitation?
Hi, Add this code to the Custom JS section in the Misc tab. Change the FieldInternalNames in the “arr” to match your field names: (function(){ var arr, chk; arr = [...
View ArticleAttachments broken on Edit form with Rules making fields read only
With DFFS 4.102, if you have any rule on an edit form that makes a field readonly, that rule will also set Attachments to readonly and remove the Attach Files from the Action bar Ribbon. Having the...
View ArticleReply To: Attachments broken on Edit form with Rules making fields read only
Hi Earl, We have already clarified this, so this is for anyone else with the same issue: this bug was fixed in v4.03. Alexander
View ArticleUsing an href in a heading
Hi Alexander, I attempted to use href html code in a heading. For some reason it keeps inputting the main URL of the site/lists/ and appending the URL I input. So this causes issues on several...
View ArticleReply To: Using an href in a heading
I must see the URL – to insert the code, wrap it “code tags” from the ribbon above the text field. Alexander
View ArticleReply To: Using an href in a heading
<a href=“http://xxxxx.xxxx.xxxxxx/xxxxx/xxxxx/xxxxxTestingArea/TestScripts/ScheduleASATObjectivesforEntities.docx”>Click here to open Scheduler Script.</a> This is to a Document Library on...
View ArticleReply To: Using an href in a heading
It looks like the double quotes around the href attribute are wrong – try rewriting them. Alexander
View ArticleError in DFFS, when open form on mobile devices
When I open EditItem form, which have readonly PeoplePicker fields, i see error: [_x041a__x043e__x043c__x0443__x00]: The people picker is not ready! You must delay the function call likt this:...
View ArticleDFFS frontend v4.106 and backend v4.104 released
You find the complete change log here: http://spjsblog.com/dffs/dffs-change-log/
View ArticleHide idAttachmentsRow on tabs
Hi Alexander! I am not able to hide Attachment field. Attachment field display on every tab, is it possible to hide it? SP 2013
View ArticleReply To: Hide idAttachmentsRow on tabs
Hi, By default, the attachment field will be present in all tabs when it is not explicitly added to one or more tabs. This means that you can add the attachment field to a dedicated tab, and it will...
View ArticleReply To: Error in DFFS, when open form on mobile devices
Hi, What is the trigger you use to set the fields as read only? Alexander
View ArticleReply To: Conditional Highlighting
Hi, Add this code to the Custom JS section: (function colorMyField(){ var val = getFieldValue("MyNumberField"), color = "#ffffff"; if(parseInt(val,10) > 10){ color = "#00ff00"; }...
View Article