Forum Replies Created
-
AuthorPosts
-
Hi,
No, you should not. The reason you see it is because there is restrictions in SP2013 on how many “lookups” you can have in one query. I was convinced that this error should not show, but there may be another query that could trigger this error.Please give me some more details on SharePoint version, and what you do to get this error.
Alexander
Yes, If you have edit access to the configuration list, you can edit the “blob” and simply remove the “pass” value so it ends up like this:
"pass":""
Alexander
Sorry about that – it is now available.
Alexander
Please test v4.253 and report any issues. I have not been able to recreate the error reported here, but hope I have been able to fix it anyways.
Se complete change log here: https://spjsblog.com/dffs/dffs-change-log/
Thank you for your patience,
Alexander
I have done some work on the v4.25x version this weekend, and will be posting an updated version later today. I have removed a few bugs so I hope it will perform as expected.
Alexander
Thank you for the feedback. Can you tell me how many fields of the following types you have in your form:
- People pickers
- Taxonomy fields / managed metadata
Any other “complex” fields?
Alexander
I did actually not think of this initially, but I’ll add support for this as soon as I have sorted the current bugs in v4.25x.
Alexander
I’m currently working to resolve these issues, but I have not been able to recreate the errors locally.
It would help if you could test this BETA, and the updated spjs-utility.js
Open the developer console (hit F12 > Console) and click on any error messages and posti the line where the error occurs here.
Also post the SharePoint version and which browser you use.
Alexander
Hi,
The problem is that the field is actually a single line of text field (but the input is hidden), and the script generates a dropdown in its place. This means that using “setFieldValue” will set the single line of text field because the script “knows” this field is of type single line of text. You must therefore add another line of code to find the select and set its value “manually”.Alexander
Sorry, I have no such solution. You should look at for example ShareGate.
Alexander
Hi,
Yes this is currently a requirement. I have somehow forgot to put this in the manual, but it is mentioned in this post: https://spjsblog.com/2012/02/12/list-view-preview-item-on-hover-sharepoint-2010/No wonder you did not find it though. I’ll make a note so I remember to update the manual.
Alexander
You are right, I have updated the change log. Please note that I have fixed one bug in frontend v4.251.
Alexander
Thank you for the feedback – this will be fixed in the upcoming release.
Alexander
I will add the ability to have the “customProp” as an array of FieldInternalNames in the next release of spjs-utility.js.
In the meantime, you can modify your current version by changing this:
if(customProp !== undefined){ arrOfFields.push(customProp); }
like this:
if(customProp !== undefined){ if(spjs.$.isArray(customProp)){ spjs.$.each(customProp,function(i,p){ arrOfFields.push(p); }); }else{ arrOfFields.push(customProp); } }
Alexander
Hi,
I do not have a ready to use code example, but will keep this request in mind and see what I can do. I am however busy working on bringing the latest DFFS version out of BETA, so I cannot promise anything.Alexander
-
AuthorPosts