Forum Replies Created
-
AuthorPosts
-
I am facing a similar situation to Paul where my company will be retiring 2010 workflows to upgrade the backend to SharePoint SE. They will not upgrading to SharePoint Online or making Flow available until later time unknown.
So my question is aside from the limitation “SP 2013 workflow will only send emails to valid members of the organization” can the 2010 workflow be replaced by a 2013 workflow as long sending to emails outside and organization is not needed?
Also, before I try to re-write myself is there any 2013 workflow reference that I might be able to follow?
Thanks!
Perfect and thank you! Putting money in the piggy bank!
I am familiar the following custom js for working with a single column but I seem to be missing some syntax for the group id method above for group ID:
$(“#dffs_FieldInternalName”).hide();
$(“#dffs_FieldInternalName”).show();
spjs.dffs.flag_Mandatory([“FieldInternalName”]);
spjs.dffs.clear_Mandatory([“FieldInternalName”]);
spjs.dffs.doReadOnly([“FieldInternalName”]);What would showing fin look like?
Thank you!
I also found this solution to clear visible selections:
$("#Selection2_casc").empty();
Where my field name is Selection2
- This reply was modified 3 years, 1 month ago by Bryan Waldrop.
Thank you so much as always! The on blur automated solution is much more elegant and very appreciated.
Thank you very much!
Much appreciated! thank you sir!
could the multichoice be modified to use the values of other columns as choices?
I gave this a whirl but no go
function popUpMultichoiceSelect(fin, arrOfOptions) { var b = []; var cx=getFieldValue('phone1'); var dx=getFieldValue('phone2'); b.push("<div id='customMultichoiceSelector'>"); jQuery.each(arrOfOptions, function (i, v) { b.push("<input id='customMultichoice_" + i + "' type='checkbox' value='" + v + "'><label for='customMultichoice_" + i + "'>" + v + "</label>"); }); b.push("</div>"); spjs.dffs.alert({ "title": "Multichoice Example", "msg": b.join(""), "ok": function () { var arr = []; jQuery("#customMultichoiceSelector").find("input:checkbox:checked").each(function (i, elm) { arr.push(jQuery(elm).val()); }); setFieldValue(fin, arr); }, "cancel": function () { // Close dialog } }); } popUpMultichoiceSelect("phselect", [cx,dx]);
- This reply was modified 4 years ago by Bryan Waldrop.
Thank you sir! This works brilliantly and is something I will be able to reuse in many applications. Piggy Bank utilized!
Thank you! That works perfectly if today is a Monday or Tuesday. Even Wednesday skips Sat and Sun to generate Monday as the new_date. However, if today is a Thursday or Friday then Monday is also selected as new_date instead of Tue/Wed?
Hi Alexander!
What would “add 3 business days to todays date” look like?Thanks!
<attached>
Training Type is the vlookup column. I would like the value “cross training” to align with the Name of Trainer and Assigned Trainer columns.
Attachments:
Sorry 0 Found my answer here: https://spjsblog.com/forums/topic/create-field-with-people-picker-data/
Thank you for this! The results of my testing are that it works wonderfully in my SP2013 environment with a small exception. I have a coded “copy to clipboard” button/function where the alert for it will not close with enter after running.
Over in the SP 2010 environment, your snippet fires my “copy to clipboard” function every time enter is used to close any spjs.dffs.dlgbox. In SP2013 I can workaround by changing my “copy to clipboard” function back to a browser’alert’. But that did not work in SP 2010.//copytoclipboard function copyNotesToClip() { var txtNotes = getFieldValue('Call_x0020_Notes'); spjs.dffs.dlgBox ("Notes successfully copied to clipboard. Paste to system of record before resetting this form."); if( window.clipboardData && window.clipboardData.setData ) { window.clipboardData.setData("Text", txtNotes); } } $(spjs.dffs.fields["Call_x0020_Notes"]).find('.ms-formbody').append("<button class='customBtnA' onclick='copyNotesToClip();return false'>Copy Notes to Clipboard</button>");
-
AuthorPosts