Introduction:
In this blog, I'm attempting to demonstrate a proof of concept as How To Create Third-Party Apps, Games and Integrate it in Business Central using Control AddIns, Javascript and CSS.Also, this blog illustrates how to port any javascript apps and games to Microsoft Dynamics NAV / Business Central.
In this case, I have created a simple JavaScript Game and will be showing how to make it compatible with Business Central using Control AddIn.
Pre-requisites:
- VS Code
- Microsoft Dynamics NAV / Business Central
- Understanding of Javascript
- Understanding of Control AddIn
Source Code:
Books & References:
- https://docs.microsoft.com/en-us/dynamics365/business-central/dev-itpro/developer/devenv-control-addin-object
- https://www.w3schools.com/js/
- https://www.github.com
- https://codepen.io
Demonstration:
In this demonstration, I will be creating or copying a game from a few sample games available on Github or Codepen.io and then showing how these codes can be simplified to make it compatible with Microsoft Dynamics Business Central.1. Creation of the Game in HTML, CSS, and Javascript :
In this case, I have a simple game that is created in Javascript but to initialize, we use HTML Code by creating a canvas or a div tag and call the Javascript that creates a whole frame layout.
Main HTML File |
Adding Stylesheet.CSS to HTML file |
Then, I have created a simple Javascript which will be used as a Startup Script in ControlAddIn.
You can refer to
https://github.com/olisterr/ControlAddIn/blob/master/ControlAddInSizeDemo-master/ControlAddIn/BallBrick/Startup.js
Basically, I attempted to create an HTML framework so that it is easier to follow. Further, I will be removing HTML completely as it can be created using Javascript.
Ball & brick game running in Web Browser |
2. Porting the game from HTML Javascript Code to Business Central Compatible Code:
Any javascript code that you start with always starts in the body of the HTML.
This javascript can or cannot be in the right format which is compatible with NAV / Business Central Control AddIn. A simple way of formatting Javascript is to put all the Javascript code in a single file and create the HTML Elements Dynamically in Javascript with a parent element being with the id #controlAddIn.
This means that whenever you create a ControlAddIn in Business Central, it corresponds to the #controlAddIn element. Thus, instead of <body> being your parent, <div id="controlAddIn"> is your parent tag. Thus, eliminating HTML completely.
Making Javascript compatible with Business Central |
In the code https://github.com/olisterr/ControlAddIn/blob/master/ControlAddInSizeDemo-master/ControlAddIn/BallBrick/Startup.js
3. Creation of Control Add-in:
Control Add-in is an object type in Business Central which used to connect the Javascript and CSS Code to Business Central. This is done by calling the Control Add-in in the User Control section of the page just as you would call a field or a variable.
Control Add-in is also used as an intermediary to pass on the Events and function calls from Business Central to JavaScript and Events from Javascript to Business Central.
Moreover, we can also define the size of the Control Add-in section on the page.
Control Add-in in Business Central |
4. Adding Control Addin to Page:
Control Add-in in Business Central is called in a Page with the help of a User Control type on the page.
Here User Control generally behaves like a part page. This means that if you want to make use of any functions or properties of User Control, you need to use
CurrPage.<UserControl>.<FunctionName>.
Page having Control add-in embedded in Business Central |
In order for Business Central and Javascript to work hand in hand, there needs to be some communication between them.
For sending data from Business Central to Javascript, we make use of procedures that are defined in Control Add-in.
One such example is running a simple function which triggers an alert. From Business Central there will be a page action that will trigger a function named init in Javascript which will pop-up an alert.
Action in the Page that contains a call to Control Add-in that triggers the function in Javascript |
Function in Javascript that is triggered through Control Add-in in Business Central. |
Function triggered by Business Central to Javascript |
For sending data from Javascript to Business Central, we make use of events that are defined in Control Add-in.
Events are considered as triggers if the Control Add-in of the Business Central. For Business Central to react to the trigger we need to create a trigger for the User Control.
Trigger inside Business Central with Text Argument |
Javascript trigger through WebClient API |
Javascript Event-Triggered |
Conclusion:
Just a request, if you are creating a game on your own I would like to have a copy so I can keep a central repo for games in my Github.
Hope you guys like this :)
Comments
Post a Comment
Let me know your comments below. I'll try my best to answer your comment