Forum Replies Created
-
AuthorPosts
-
Alexander Bautz
KeymasterI have now release a new BETA version: https://spjsblog.com/2022/08/11/modern-dffs-v0-9-0-8/
Alexander
Alexander Bautz
KeymasterAre you looking to color code a row in the form or in the list view?
The modern view can be modified using this method: https://support.microsoft.com/en-us/office/format-a-column-to-change-how-it-looks-6ed2f787-0e9e-4908-b861-0d06571c256d
Alexander
Alexander Bautz
KeymasterHi,
I think you might have misunderstood. You are not supposed to add the old v4.4.5.45 DFFS version – and you don’t need to use DenyAddAndCustomizePages. The new modern DFFS version is only installed and activated in the app catalog in your tenant (or your site collection if that has been set up) – see instructions in the link in the first post in this thread.Alexander
Alexander Bautz
KeymasterSorry for the late reply – forgot to subscribe to the forum and didn’t get a notification…
This issue is fixed in the upcoming release.
Alexander
Alexander Bautz
KeymasterSorry for not replying – I managed to forget subscribing to comments and was to busy to look into the forum…
Use this license code for testing:
DFFSMODERN::L1q151NE02F1o021IW00Y3mt2C11c4lm11110iU23KuF2wm101b1e15M11C0M10l1Vp9*9FY105Z1H08pJ3*2_11w6z11=5e1f01T11H6xVS321Xj15XB10711Ah4H11l11t1k91Ww1510pq61yq121tf15zEj451S2h111J-09SgW7mf1121c0i9ox1119Hsr9
It is valid until August 31. I’ll update it if neccesary.
Alexander
Alexander Bautz
KeymasterIt’s most likely the cascading dropdown script that is interfering – I’m glad you found a solution.
Alexander
Alexander Bautz
KeymasterI’m glad you figured out a workaround.
Alexander
Alexander Bautz
KeymasterThe internal functions will not be directly accessible in the new version because it is written in react, but you can interact with the dataobject (for getting and setting values) from the custom js function you call from a rule (using the call a function action). The function can be added to the Custom JS like this to write to the title field:
function yourCustomFunction(rule, match, dataObj){ // console.log("rule", rule); // console.log("match", match); // console.log("dataObj", dataObj); dataObj.Title = "Rule matching: " + match; }
Alexander
Alexander Bautz
KeymasterHi,
You can do that like this:// Define variable on the root var varFromAlertInput = ""; spjs.dffs.alert({ "title": "Test alert with input field", "msg": "<input id='varFromAlertInput_input' type='text'>", "ok": function(){ // Update the variable before closing varFromAlertInput = jQuery("#varFromAlertInput_input").val(); } });
Alexander
-
This reply was modified 1 week, 6 days ago by
Alexander Bautz.
Alexander Bautz
KeymasterThanks for the feedback – I’ll fix this in the next release. I have made some more progress and added functionality to import configs from other forms in the same list, making restore points and using development mode to work on a new config for an existing “live” from without interfering. The switch form buttons are also added.
I’ll work on vLookup next and hope to release a new version later this week.
Best regards,
AlexanderAlexander Bautz
KeymasterDid you try changing the font size from 14 to a lower number? – or maybe try using the zoom like this:
.dffs-mobile-mode #part1 *{ zoom: 1; }
Alexander
Alexander Bautz
KeymasterSorry, the user manual did not mention this setting, but you find a checkbox named Show field description for read-only fields in the Misc tab under the heading Read-only fields.
Please note that you only find this in NewForm and EditForm configurations.
Alexander
Alexander Bautz
KeymasterSorry, but I don’t currently have any apple devices to test it with. If it was working and suddenly stopped it must be an update to the browser that messed it up.
You can try adding this to your custom css to test (adjust the font-size if necessary):
.dffs-mobile-mode #part1 *{ font-size:14px; }
Alexander
Alexander Bautz
KeymasterHi,
You can use both the old and new in the same site, but not in the same form.I haven’t created – and will most likely not create a migration tool as the old and the new config for both form and rules is completely different.
This means you must recreate the forms using the new version.
Please note that this is currently an early version and it has bugs and is missing vital functionality you will need to replace your old version. You can use it to test the functionality, but it is not production ready just yet.
Alexander
Alexander Bautz
KeymasterThe code for overriding the details pane must be deployed as an app and cannot be installed directly in a list view so I don’t think it will be available as a standalone solution for now.
I think you are right about the details pane – hiding it entirely is most likely the best.
Alexander
-
This reply was modified 1 week, 6 days ago by
-
AuthorPosts