30 minutes with Servoy developer series

Servoy announcements

Re: 30 minutes with Servoy developer series

Postby sean » Thu Mar 26, 2020 8:33 pm

* While we know it's definitely NOT business-as-usual, we here at Servoy are still at work (from home). And we feel it is important to bring you these updates wherever you are.

Part 3 - Friday March 27 - Google Maps Component Update

To wrap up this launch series, we’ll look at enhancements to one of our more popular components, SvyGMaps, which combines Servoy’s data-binding with Google Maps. This webinar is for anyone having geographic data in their applications, including addresses or geographic features. You will learn:

    How to delight your users by adding a geographic perspective to your application.
    What’s new since the last release
    Including gesturing, enhanced markers, route mapping and more.

Register Here

8am Los Angeles (PST)
11am New York (EST)
16h Amsterdam (CET)

If you missed Part 1 & 2 or want to re-watch it, you can stream it from our archives.
Software Engineer
Servoy USA
sean
 
Posts: 370
Joined: Mon May 21, 2007 6:26 pm
Location: USA

Re: 30 minutes with Servoy developer series

Postby steve1376656734 » Fri Mar 27, 2020 6:01 pm

Hi Sean,

Thanks for a great demo today.

I asked a question regarding GeoCoding addresses and you said that this was not available through the component but was simple to achieve through the Google API. Could you share anything on this that would help me please?

Thanks
Steve
Steve
SAN Developer
There are 10 types of people in the world - those that understand binary and those that don't
steve1376656734
 
Posts: 326
Joined: Fri Aug 16, 2013 2:38 pm
Location: Ashford, UK

Re: 30 minutes with Servoy developer series

Postby sean » Fri Mar 27, 2020 6:16 pm

Hi Steve,

Thanks for watching and great question! The component is more for rendering a map. But one can use the sample Google Maps API Key to geocode via simple rest API.

Below is a snippet for a single address. For a full reference spec see Google's Docs

Code: Select all
function geocodeAddess(){
   
   //   GEO-CODE BASE URL
   var url = 'https://maps.googleapis.com/maps/api/geocode/json';
   
   // THE ADDRESS TO GEO-CODE
   var address = foundset.displayAddress;
   
   // APPEND ADDRESS AND API KEY PARAMETERS
   url += '?address=' + encodeURI(address);   // don't forget to URL-encode
   url += '&key=' + apiKey;
   
   // CREATE A SIMPLE GET RREQUEST
   var client = plugins.http.createNewHttpClient();
   try {
      var request = client.createGetRequest(url);
      var response = request.executeRequest();
      var status = response.getStatusCode();
      
      // PROCESS RESPONSE
      if(status == plugins.http.HTTP_STATUS.SC_OK){
         var body = response.getResponseBody();
         
         /** @type {{results:Array<{formatted_address:String,geometry:{location:{lat:Number,lng:Number}}}>}} */
         var geocoded = JSON.parse(body);
         
         application.output('Formatted Address: ' + geocoded.results[0].formatted_address);
         application.output('Lat / Long: ' + geocoded.results[0].geometry.location.lat + ',' +
            geocoded.results[0].geometry.location.lng);
         
         
      }

    // CLEAN_UP
   } finally{
      client.close();
   }
}
Software Engineer
Servoy USA
sean
 
Posts: 370
Joined: Mon May 21, 2007 6:26 pm
Location: USA

Re: 30 minutes with Servoy developer series

Postby sean » Mon Apr 06, 2020 7:23 pm

New Tech Webinar - MS Word Plug-in Updates - with Special Guest iTechPros

Please Note: If you are already registered, you will need to re-register as we are migrating from GoToWebinar.

Please join us Wednesday April 8 for another edition of the Servoy Tech Series.
We are happy to invite Servoy Experts, iTechPros to demo the latest addition to their suite of Servoy plug-ins.

This webinar is for anybody that wants to integrate with MS Word to include reporting in their applications, and is especially relevant for those who require end-user report customization.

In this webinar you will learn how the MS Word Plug-in from iTechPros allows developers to:

    - Create advanced report templates which are simple, and don't require additional tools.
    - Empower end-users to customize their own reports.
    - Leverage features like data merge, row looping, Servoy FoundSets, relations, calculations, aggregates, formatting, conditional expressions and more.
    - Generate beautiful reports with formatted data, charts, and images.


Register Now

8am Los Angeles (PST)
11am New York (EST)
16h Amsterdam (CET)

If you missed our 2020.03 launch campaign, you can watch it from our archives
Software Engineer
Servoy USA
sean
 
Posts: 370
Joined: Mon May 21, 2007 6:26 pm
Location: USA

Re: 30 minutes with Servoy developer series

Postby sean » Wed May 20, 2020 9:12 pm

Tech Webinar – Deploying Progressive WebApps (PWAs)

If you missed today's webinar or you want to re-watch some content, it's now available in our archives.

If you are not registered for the tech series, you can Register Here.

--

We were happy to invite Servoy customer Portfolio+, to share their approach for using PWAs to distribute their mobile banking solution.

This webinar is for anybody that wants to deliver mobile applications with less friction.

In this webinar you will learn how Portfolio+ uses Servoy and a PWA approach to:

    Quickly and easily distribute omni-channel applications to mobile devices
    Maintain the native device user experience
    Bypass App-Store certification constraints
    Install applications directly from the browser
    Improve performance and more!
Software Engineer
Servoy USA
sean
 
Posts: 370
Joined: Mon May 21, 2007 6:26 pm
Location: USA

Re: 30 minutes with Servoy developer series

Postby sean » Thu Jun 25, 2020 1:50 pm

Part 2 - Thursday June 25 - NG Grids Update

Part 2 of this webinar series covers the many enhancements to Servoy's NG Grid components. This powerful, feature-rich component package is used in nearly every Servoy project. So it makes sense that it deserves its own update webinar. Whether you're a grid expert or just getting started, there's a lot to learn in this webinar.

Register Here

All webinars:
8am Los Angeles (PST)
11am New York (EST)
17h Amsterdam (CET)

If you missed Part 1 of this series, you can stream it from our archives
Software Engineer
Servoy USA
sean
 
Posts: 370
Joined: Mon May 21, 2007 6:26 pm
Location: USA

Re: 30 minutes with Servoy developer series

Postby sean » Mon Jun 29, 2020 7:55 pm

Part 1 & 2 recordings of our webinar launch series are now both posted and can be viewed on the tech webinar archives:

https://servoy.com/webinars/tech-series/
Software Engineer
Servoy USA
sean
 
Posts: 370
Joined: Mon May 21, 2007 6:26 pm
Location: USA

Re: 30 minutes with Servoy developer series

Postby sean » Tue Jul 14, 2020 9:39 pm

Please join us Wednesday July 15 for another edition of the Servoy Tech Series: UI/Style Tips & Tricks

This will be a short, fun webinar to cover a few common tips and tricks to optimize the UI in the NGClient, based on questions and requests we have seen recently. Some of the items we will cover include:

    Working with (font) icons
    Animation (CSS transitions)
    Implementing dynamic styling
    Dynamic styles in grids
    Icons in grids
    Clickable links in grids
    Enhancing tabs with markup

Register Here!

8am Los Angeles (PST)
11am New York (EST)
16h Amsterdam (CET)

If you missed our recent 2020.06 release webinars, don’t worry, you can watch it in our archives
Software Engineer
Servoy USA
sean
 
Posts: 370
Joined: Mon May 21, 2007 6:26 pm
Location: USA

Re: 30 minutes with Servoy developer series

Postby sean » Thu Jul 16, 2020 11:37 pm

UI/Style Tips & Tricks
The recording of  yesterday's (July 15) webinar is available in our archives

The example solution is available here.

This webinar covers a few common tips and tricks to optimize the UI in the NGClient, based on questions and requests we have seen recently. Some of items we will cover include:

    Working with (font) icons
    Animation (CSS transitions)
    Implementing dynamic styling
    Dynamic styles in grids
    Icons in grids
    Clickable links in grids

Remember that the live webinar is interactive and you can ask questions. There's more to come, so Register Here!
Software Engineer
Servoy USA
sean
 
Posts: 370
Joined: Mon May 21, 2007 6:26 pm
Location: USA

Re: 30 minutes with Servoy developer series

Postby sean » Fri Aug 21, 2020 3:59 pm

New Tech Webinar: SvyGMaps component updated! (2.2.0)

Please join us Wednesday, August 26 for this fun webinar dedicated to SvyGMaps, Servoy’s Map component. We’ve added quite some enhancements and we are excited to show you. Whether you already use maps in your application, or you’ve just been planning on it, we got you covered.

In this brief webinar, you will learn the enhanced API to create and manage map markers, with a dozen new properties and more than 20 new possible events. It’s a great time to up your map game!

Register Now

8am Los Angeles (PST)
11am New York (EST)
17h Amsterdam (CET)

And don’t forget to check out past webinars in our archives
Software Engineer
Servoy USA
sean
 
Posts: 370
Joined: Mon May 21, 2007 6:26 pm
Location: USA

Re: 30 minutes with Servoy developer series

Postby sean » Thu Aug 27, 2020 4:22 am

Tech Webinar Recording Available

Thanks to those who attended this webinar #82 - Google Maps Component Update
...and for everybody, the recording is available in our archives

Also available:
The example solution

There is also a comprehensive sample available on the SvyGMaps package home page

The presentation slides

Please share your feedback!
Software Engineer
Servoy USA
sean
 
Posts: 370
Joined: Mon May 21, 2007 6:26 pm
Location: USA

Re: 30 minutes with Servoy developer series

Postby sean » Sat Sep 05, 2020 4:01 pm

Next Webinar: Office365 Mash-Up

Please join us Wednesday September 9 for another edition of the Servoy Tech Series.

We are happy to invite long-time Servoy customer, NextLegal to demo the Office365 Outlook integration they’ve just built, which supercharges email workflows for their users.

This webinar is for anybody interested to see how an ISV or enterprise can integrate their business applications with the Office365 tools that their customers already use, creating a seamless experience and multiplying value.

In this webinar you will learn how Servoy developers can:

  • Leverage the Office APIs from Servoy applications
  • Trigger functions in their application from within Office 365 tools
  • Mash-up, i.e. run Office 365 and their application in the same window
  • Seamlessly integrate Word, Excel and Outlook functionalities into high-value business applications, such as ERP and CRM.

Register Now
8am Los Angeles (PST)
11am New York (EST)
17h Amsterdam (CET)

If you missed our latest webinar about the Google Maps component, you can watch it from our archives
Software Engineer
Servoy USA
sean
 
Posts: 370
Joined: Mon May 21, 2007 6:26 pm
Location: USA

Re: 30 minutes with Servoy developer series

Postby sean » Thu Sep 10, 2020 10:57 pm

Tech Webinar Recording Available

Thanks to those who attended this webinar #83 - Mashable Apps with Office365 !
...and for everybody, the recording is available in our archives

If you are not already on the list, you can register for the series and watch live.

And please contact me directly, or reply to this thread to share you Office365 integration dreams, or to provide feedback on the series.

Thanks!
Sean
sdevlin@servoy.com
Software Engineer
Servoy USA
sean
 
Posts: 370
Joined: Mon May 21, 2007 6:26 pm
Location: USA

Re: 30 minutes with Servoy developer series

Postby sean » Fri Sep 18, 2020 4:30 am

2020.09 Launch Webinars Next Week!

Servoy version 2020.09 release candidate (RC1) is available! We’re happy to invite you to our tech webinar series, with three short webinars to cover the launch. Come explore the ins-and-outs of the latest release, including the latest updates to the platform and its suite of extension packages.

We'll kick things off Monday, September 21 with a release overview with a demo of Servoy's newly enhanced Data Validation controls with more sessions Wednesday and Friday to be announced.

Register Here

All webinars:
8am Los Angeles (PST)
11am New York (EST)
17h Amsterdam (CET)
Software Engineer
Servoy USA
sean
 
Posts: 370
Joined: Mon May 21, 2007 6:26 pm
Location: USA

Re: 30 minutes with Servoy developer series

Postby steve.rowney » Thu Oct 08, 2020 4:43 pm

Is it possible to get the demo solution for svyNavigation webinar from December 2019
steve.rowney
 
Posts: 0
Joined: Tue Oct 06, 2020 1:08 pm

PreviousNext

Return to Announcements

Who is online

Users browsing this forum: No registered users and 1 guest