Kasey

Forum Replies Created

Viewing 15 posts - 31 through 45 (of 94 total)
  • Author
    Posts
  • in reply to: Anyway to speed up Auto Complete? #24474
    Kasey
    Participant

    Thanks, Alex! That worked like a charm. I was afraid to try preloaddata since it was a large list and I thought it would slow down the form initialization but it doesn’t and the lookup is immediate now. Thanks again!

    in reply to: SPJS-CASC Issue after 2013 upgrade #21800
    Kasey
    Participant

    Perfect. Thank you!

    in reply to: SPJS-CASC Issue after 2013 upgrade #21790
    Kasey
    Participant

    Last question, can the field simply be renamed by prepending Odata_ or will the field need to be recreated?

    in reply to: SPJS-CASC Issue after 2013 upgrade #21788
    Kasey
    Participant

    I assume field names without underscores are still fine?

    in reply to: SharePoint 2013 Calendar People Picker setFieldValue #19400
    Kasey
    Participant

    Your solution worked nicely. Thank you. I attempted to set a rule on change of the people picker field to execute my function but that isn’t working either. I figured out a way around it but if you decide to add support of the setFieldValue could you also take a look at the on change issue? Thanks again.

    in reply to: SharePoint 2013 Calendar People Picker setFieldValue #19394
    Kasey
    Participant

    Could this be a future enhancement? Should I add it to the requests forum?

    in reply to: JS Open Form in Modal vLookup Issue #19263
    Kasey
    Participant

    Does not occur in 4.4.2.9.

    • This reply was modified 6 years, 2 months ago by Kasey.
    in reply to: External Lists #18511
    Kasey
    Participant

    I haven’t tried since version 3.x. Cant remember specifically which version since it has been a couple of years but I know it didn’t work back then. I’ll be setting up a new BCS list at which point i can retry with your latest version.

    in reply to: vLookup link to call function #17469
    Kasey
    Participant

    I figured this out!

    in reply to: vLookup link to call function #17458
    Kasey
    Participant

    I should have mentioned I will need to pass two values from the child item to the function on click so that I can build my url and open it in a new window.

    in reply to: Rule Empty field #17414
    Kasey
    Participant

    Try using equals and leave the value field blank.

    in reply to: Two ideas #17172
    Kasey
    Participant

    Fantastic. Thank you!

    in reply to: DFFS v4.4.3.0 Tooltip ? icon missing #17104
    Kasey
    Participant

    That did the trick! Thank you!

    in reply to: SharePoint online require.js #17082
    Kasey
    Participant

    I’m not using SharePoint online and am having the same problem. Below is an example of one of my functions that is failing. How would I remedy this in the custom js section?

    $(“#dffs_IntakeDate”).find(“input”).datepicker({
    onSelect: function(updatePreIntake){spjs.dffs.triggerRule([“IntakeDateTargetChange”]);},
    constrainInput: true,
    maxDate: ‘+60d’, //sets the maximum selectable date.. in this case 60 days from today
    minDate: ‘+1d’, //sets the minimum selectable date.. in this case tomorrow
    beforeShowDay: //determines which days are selectable.. in this case Thursday only
    function (date) {
    var day = date.getDay();

    var SponsorGroup = getFieldValue(“Business_x0020_Objectives”)
    //CONSUMER VEHICLE LENDING
    if(SponsorGroup == “Consumer Vehicle Lending”){
    var strDay = 3;
    }
    else{
    var strDay = 4;
    }
    return [(day == strDay), ”];
    }
    }).attr(‘readonly’, ‘readonly’);

    in reply to: DFFS v4.4.3.0 Tooltip ? icon missing #17071
    Kasey
    Participant

    Thanks. That helped but is there anything I can do so I don’t have to update each form configuration? I have a custom css file I already load. Can I add something there?

Viewing 15 posts - 31 through 45 (of 94 total)