Forum Replies Created
-
AuthorPosts
-
Bryan Waldrop
ParticipantThank you!
I also found this solution to clear visible selections:
$("#Selection2_casc").empty();
Where my field name is Selection2
-
This reply was modified 1 year, 11 months ago by
Bryan Waldrop.
Bryan Waldrop
ParticipantThank you so much as always! The on blur automated solution is much more elegant and very appreciated.
Bryan Waldrop
ParticipantThank you very much!
Bryan Waldrop
ParticipantMuch appreciated! thank you sir!
Bryan Waldrop
Participantcould 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 2 years, 10 months ago by
Bryan Waldrop.
Bryan Waldrop
ParticipantThank you sir! This works brilliantly and is something I will be able to reuse in many applications. Piggy Bank utilized!
Bryan Waldrop
ParticipantThank 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?
Bryan Waldrop
ParticipantHi Alexander!
What would “add 3 business days to todays date” look like?Thanks!
Bryan Waldrop
Participant<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:
Bryan Waldrop
ParticipantSorry 0 Found my answer here: https://spjsblog.com/forums/topic/create-field-with-people-picker-data/
Bryan Waldrop
ParticipantThank 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>");
Bryan Waldrop
ParticipantThank you sir! Apparently the ability to use enter is a big deal to these users as I heard from another group about it today. I have several “scripts” for them to read before entering information that are alert box driven. I thought I would ask if there was an easy fix before changing them all back to alert.
Bryan Waldrop
ParticipantThank you!
Bryan Waldrop
ParticipantI wanted to bump this question as I have been asked to create a contingency plan for SharePoint. We have a popular form built with DFFS that has become a huge part of the department’s daily workflow. However, the company has and is experiencing some IT issues that have SharePoint sites unavailable for large portions of the workday.
Is it possible to have a offline access?
For my particular situation there would be benefit in even working through the information presented in add new form without saving data back to the list as long as the DFFS logic could be applied. In other words No edit or display form would be necessary.Thanks!
Bryan Waldrop
ParticipantI figured out the field:
$(spjs.dffs.fields[“HRR_x0020_Refresh”]).show();Still having trouble figuring out the same for heading.
-
This reply was modified 1 year, 11 months ago by
-
AuthorPosts