Forum Replies Created
-
AuthorPosts
-
Hi Therman,
i think you have 2 Options:
1.) create yout Field “LunchYesNo” and after you created ist, just rename it to what ever you want –> the field internal name stays “LunchYesNo”. I think this is the best practice to get nice and accessable fieldnames.
2.) you could use custom JS to search an replace the label field. But this only makes sense if you need to change the label dynamicly…
Best regards,
MichaelHi Alexander,
i have another question on this topic:
In my case, we always lookup for the contents in a folder where the foldername is equal to the current items title.
Now when the vlookup column is setup within the list view, we have 2 “problems”:1.) empty folders are also displayed (which is understandable from the function)
2.) we don’t “need” to see the foldername, because ist the same as the titleSo my question:
Is there any way to “hide” the folder icon and just show the contents under the folder?Best Regards,
MichaelHi Alexander,
as always: Thanks for your help!
Best Regards,
MichaelHello Alexander,
the field were autocomeplete is appended is “CustomerNumber” Field and the the field that is set is “CustomerName”.
When a new item in the list is created, it is possible that we do not have a “CustomerNumber” in this phase of the project, so this field is not used, but because we need a customername to identify the item the “CustomerName” Field is visible an can be edited / filed manually.
As soon as we have a customernumber, the item should be edited and the correct customer name should be pulled from our customerlist (selected by customernumber) and the manually entered value should be replaced.Now if somebody “checks” if the entry is availabel in the customerlist, the customername field is cleared if no value is found.
Regards,
MichaelHi Alexander,
here is the information:
SPJS-Autocomplete plugin v1.6.26spjs.ac.textField({ "applyTo":"FileLeafRef", "helpText":"Bitte geben Sie eine Nummer ein", "listGuid":"{b6b26d93-ea2d-4afb-94de-edc84ffc4e36}", "listBaseUrl":"/path/site", "showField":"Nummer", "optionDetailFields":["Nummer1","Nummer2"], "enforceUniqueValues":true, "rowLimit":15, "listOptionsOnFocus":false, "minLengthBeforeSearch":3, "reValidateOnLoad":false, "allowAddNew":false, "isLookupInSelf":false, "addNewAdditionalFields":[], "filterCAML":"", "multiselect":false, "multiselectSeparator":"; ", "orderBy":[], "setFields":[{ "fromFIN":["Nummer2"], "joinBy":"", "toFIN":"Kunde", "parseFunction":"", "skipIfEmpty":false } ] });
Best Regards,
MichaelHi Alexander,
i want to use dffs within the NewDosSet.aspx.
Should this still work with the current version on SharePoint2016 ?
The Installer only recognizes the disp and the edit form. How could i config the newdocset.aspx?
Best Regards,
MichaelHi Alexander,
the variable now works!
Thanks a lot for your help!!
Regards,
MichaelDo you Need any additional informations about this?
Regards,
MichaelHi Alexander,
do you have any timeframe when you publish the new DFFS Version with the changes regarding the checkout functionallity (Checkout Message and “Auto” Checkin)?Regards,
MichaelHi,
we have excactly the same requirment.This is the solution we use:
Custom JS:
$(window).bind("beforeunload",function(event) { if(dffs_beforeunload){ var res = spjs_updateItem({"listName":"MYDFFSLIST","id":GetUrlKeyValue("ID"),"data":{"CheckedOut":"0"}}); if(res.success){ // success }else{ //error } } });
Custom CSS:
.dffs_checkInOnSave{ display: none; }
I hope this helps. Maybe there is a better solution for this..
Regards,
Michael- This reply was modified 7 years, 2 months ago by Michael.
-
AuthorPosts