Forum Replies Created
-
AuthorPosts
-
It is possible in SP2013 to specify the folder (not currently activated in vLookup), or you can browse to the correct folder in the upload dialog.
It might be better to disable add new document, and use the link to the right of the folder name to open the folder in a new tab – and then use this to upload the documents the normal SharePoint way.
Will this work?
Alexander
Hi,
It seems I have a bug here that prevents this value to be picked up when setting the field as readonly in NewForm when the field you set is visible in the first tab.The value is set, but will not show in the readonly field before you navigate to another tab and back.
I’ll fix this in the next release.
Alexander
It’s hard to tell, but Is this web part visible if you move it to another placeholder in the page (or move it below the form)?
There might be an issue with placing it right above the DFFS CEWP so you can try to add another CEWP in-between just to test.
Alexander
Hi,
I’m glad you figured it out. I’ll add a class to this error message to make it easier to address in the next release.Alexander
I’m not sure I understand – how is it you have hidden these fields?
Alexander
Thank you for the feedback – I’m glad it worked out.
Best regards,
AlexanderI’m glad it worked out!
Best regards,
AlexanderHi,
Regarding the double slash: Did you use a slash at the end of the “listBaseUrl” in the arguments to the function? – if so, remove this.The other error might be the origin of the problem, and I suspect this has to do with jQuery being loaded more than once in the page. This causes the “filterNode” prototype function that is added by spjs-utility.js to be overwritten.
Please ensure you load jQuery only once and do another test.
Alexander
Hi,
I forgot to tell that I have released a new version July 31: https://spjsblog.com/dffs/dffs-change-log/Can you test this and let me know how it worked out?
Alexander
To get more fields back you can change the query like this:
var qRes = spjs.utility.getItemByID( { "listName":_spPageContextInfo.pageListId, "id":spjs.dffs.data.thisItemID, "viewFields":["Column1","Column2","Column3","Column4"] } ); $("span.fullusername").html(qRes["Column1"].split(";#")[1]); $("span.anotherSelector").html(qRes["Column2"].split(";#")[1]);
Alexander
July 31, 2015 at 22:29 in reply to: Multi-line Rich text boxes wiped when form is saved in IE 11 #8038Hi,
I have never heard of this before so I cannot tell what is causing it. Have you verified that it is related to DFFS by deactivating the solution (removing the CEWP)?If it is related – is the RTE a “enhanced rte” with the controls in the ribbon above the form, or the “old” type with the controls over the field itself?
DFFS does not support the old RTE editor in SP2013, so you would have to edit the list and change it to “Enhanced RTE”.
Alexander
Hi,
DFFS supports the native star rating, but as in a stock form, this is only available in DispForm.Alexander
Hi,
The calculated column is not available in EditForm, so you need to use a query to get the value.This is the HTML from the “Heading or HTML field”:
<h2>Profile Name: <span class="fullusername" /></h2>
I include it here because the quotes in your example is the wrong type because it is not wrapped in <code> tags
Then add this to the Custom JS textarea in the “CSS and JS” tab:
var qRes = spjs.utility.getItemByID( { "listName":_spPageContextInfo.pageListId, "id":spjs.dffs.data.thisItemID, "viewFields":["YourCalculatedColumn"] } ); $("span.fullusername").html(qRes["YourCalculatedColumn"].split(";#")[1]);
Change “YourCalculatedColumn” to the FieldInternalName of your calculated column.
Alexander
You can remove the password by locating the correct chart in the list “SPJS-ChartsForSharePoint_v4” (found in all site contents) and editing the “blob” and remove the “obfuscated” password so that is is only an empty string – like this:
"password":""
Alexander
Hi,
I’m sorry for not replying – I must have had a problem with the notifications from the forum as I had missed quite a few comments.I think you should be able to use the method described in this post: https://spjsblog.com/forums/topic/side-by-side-grid-view-of-readonly-values/
Let me know how it works out.
Alexander
-
AuthorPosts