This topic contains 10 replies, has 2 voices, and was last updated by  Barbara Cooney 7 years, 7 months ago.

  • Author
    Posts
  • #73158

    Barbara Cooney

    I have a transaction “Service Visit” and I would like to have a Create Event button which would take the user to the Calendar and add a new event (populating the foreign id_service_visit).

    Once the Service Visit has a related event, the button will toggle to View Event. That’ll simply take the user to the existing event in the Calendar.

    Not sure how to do this and presume I’m tapping into the soSIMPLE Calendar Actions script, but don’t see how.

    tia, Barbara

  • #73160

    admin
    Keymaster

    I’m not sure if you’re using WebDirect or FileMaker Pro/Go.

    If you’re using FileMaker Pro client, everything is script-based:

    1. Create a script that populates the id_service_visit (as either a global field, global variable, or by basing the layout on the Service Visit record) then lands you in the calendar view
    2. When you drag or double-click an area on the calendar, the soSIMPLE Action Script will run
    3. The first thing you can do in that script is set a variable to the id_service_visit. If you set it right at the top, you’re still in context of your current record.
    4. In the content of the script, you will see a section that says “else if ($type=”New”)” – in that section you can set your foreign key field to the variable you set at the top of the script

    To toggle the New/Update button, you’d have to check the existence of a related event attached to the Service Visit. If there is one, just use your own script to go to and edit the event. If there isn’t, then go to the calendar layout as above.

    Does that answer your question?

  • #73161

    Barbara Cooney

    Not sure that I follow the Edit workflow. How would my own script pass the event_id to the Action script and leave the user in an open Edit Event window?

  • #73162

    admin
    Keymaster

    I may need to know more about your workflow to answer more specifically. But in general, this is the way it works:

    The client side script (“soSIMPLE Action Script”) runs every time you do anything in the calendar – drag, double-click, etc.. When that script runs, you’re in the context of whatever layout you’re on when you double-clicked, and whatever record. You’ve also got whatever variables you’ve already set within FileMaker. So not only does that script know everything about the double-click action you just took in the calendar, it also is a regular FileMaker script that knows about your current context in FileMaker.

    Like anything FileMaker-based, you’ve got a lot of flexibility in how you use that script.

    My suggestion was to set a global variable or global field before you get to the calendar layout, representing the primary key of the service record. Then when the Action script runs, you can set a foreign key field to the number you stored in a global.

    You would insert that after else if ($type=”New”) – that’s the section of the script creates a new record.

    More information about the Action Script:
    http://www.paradisepartners.com/products/calendar-documentation/calendar-builder-reference/data-sources/filemaker-fields/scripts/action-script/

    Attachments:
    You must be logged in to view attached files.
  • #73169

    Barbara

    I have the “Create in Calendar” part working.

    SeedCode has a feature where you can “view Event in Calendar.” It takes you to the date in the Calendar and shows the Edit Event window. I was trying to see if I could get that to work with SoSimple.

    I can easily edit an event, but I cannot see how to navigate the calendar to the date of the event. For example, the service date is 3 months ago, I need to navigate to the Calendar and show that date.

  • #73172

    admin
    Keymaster

    I see what you’re trying to do!

    Add the following to the end of the URL, and you will jump right to that date:
    #date=2016-12-24

    You can even choose a specific view.

    Here’s more details:
    http://www.sosimplesoftwar.com/products/calendar-documentation/calendar-builder-reference/adjusting-your-calendar/url-anchors-for-date-and-view-links/

    If your clients choose to use the MBS plugin that we include, you can also send you a script step that will select the event in the calendar (highlights it in a specific color).

    If you’re not using the plugin, we can also customize the calendar to select an event by adding an id to the url.

    Let me know if you need either of these things, or anything else.

  • #73180

    Barbara Cooney

    I have seen this post. However, I don’t know how I modify the url? What url? Where? Which script? Is it sent to a script via a parameter? eli5, please. And yes, we’ll be using the MBS plugin. Can’t see why not.

  • #73183

    admin
    Keymaster

    Hi again.

    I just wanted to be sure we’re on the same page.

    From previous posts, my understanding is that you’re performing a custom integration as we do on our 5-minute integration page. Is this correct?
    http://www.sosimplesoftware.com/products/calendar-documentation/how-to-guides/five-minute-integration-server-powered/

    The resulting layout object, at the end of the tutorial, is a web viewer with a URL (double-click the web viewer to see the url). You can alter that URL by changing the calculation of the web viewer to reference fields or variables, or using the script step “set web viewer”.
    https://www.filemaker.com/help/15/fmp/en/index.html#page/FMP_Help%2Fset-web-viewer.html

    If you’re using the soSIMPLE Calendar file (and not the custom integration) we use the “set web viewer” step in many of our scripts.

    Please let me know which method you are using so I can further assist you.

  • #73188

    Barbara

    Hi Ken,

    Ah, the fog is clearing. I’m doing a custom integration. I’m trying to get as much functionality built so that I can demo the Calendar to my client. This is the last technique I think I’ll need.

    Since I have not yet purchased a license, I do not have access to your scripting in the demo file.

  • #73190

    admin
    Keymaster

    OK. For custom integration, you don’t need developer access to the soSIMPLE Calendar file.

    Were you able to modify the url with either of the methods I mention?

    • Modify the calculation of the web viewer object
    • Include the “set web viewer” script step in your workflow

    Thanks.

    Ken

  • #73191

    Barbara Cooney

    Yes. I can now jump from my transaction to the correct date on the calendar and pop the edit event window.

    However, the event does not show on the calendar and the date doesn’t highlight. I can add new events and they show, as do events this month. (perhaps there’s a limit to the events from the past that are loaded?)

You must be logged in to reply to this topic.