Michael

Forum Replies Created

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • in reply to: Using Alternative Field Labels #27173
    Michael
    Participant

    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,
    Michael

    in reply to: Query Subfolder #22784
    Michael
    Participant

    Hi 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 title

    So my question:
    Is there any way to “hide” the folder icon and just show the contents under the folder?

    Best Regards,
    Michael

    in reply to: Autocomplete setFields clears Fileds #22780
    Michael
    Participant

    Hi Alexander,

    as always: Thanks for your help!

    Best Regards,
    Michael

    in reply to: Autocomplete setFields clears Fileds #22757
    Michael
    Participant

    Hello 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,
    Michael

    in reply to: Autocomplete setFields clears Fileds #22724
    Michael
    Participant

    Hi Alexander,
    here is the information:
    SPJS-Autocomplete plugin v1.6.26

    
    
    spjs.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,
    Michael

    in reply to: Document sets? #20849
    Michael
    Participant

    Hi 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,
    Michael

    in reply to: Use variable in Query #18557
    Michael
    Participant

    Hi Alexander,

    the variable now works!

    Thanks a lot for your help!!

    Regards,
    Michael

    in reply to: Use variable in Query #18429
    Michael
    Participant

    Do you Need any additional informations about this?

    Regards,
    Michael

    in reply to: Check Out Without Messagebox #18352
    Michael
    Participant

    Hi 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,
    Michael

    in reply to: Build in CheckOut function – how to… ? #17895
    Michael
    Participant

    Hi,
    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 6 years, 7 months ago by Michael.
Viewing 10 posts - 1 through 10 (of 10 total)