...
When you click this button, a message should appear in the message control you configured earlier stating that the save was successful.
Adding new component to Web Application using JavaScript SDK
In this step, we will explain “How to add new JavaScript SDK component and render it as HTML page?”.
We will be creating new component “Chart of Accounts” and adding it to existing list of menus/components.
For each menu, there is corresponding html page which renders when user click on that menu.
First we have to find where the existing html pages in source code are. You can find in “Views/App” folder. Now, you can copy existing page “CheckList.cshtml” and rename it to “ChartOfAccounts.cshtml” and then add to the project in same hierarchy “Views/App” folder.
To make appropriate changes in html page, you need to login WPF application (http://apps.saasplications.com/wpf/). In “Financials” menu, press “Chart of Accounts” menu. Then in “System” menu, press “Traffic Debug”. You can see both “Request” and “Response” in both text and XML forms.
You need to set “ViewBag.Title” to same menu text as is in WPF application which is “Chart of Accounts”. You can keep “ViewBag.Icon” same as was in “CheckList” but you can change if you want.
In Traffic, you can find Activity name and Style.
Now, you need to bind to that activity in your html page.
For now, your html page (empty) is created. Now you need to add this html page to get it displayed in existing menu list.
You can find that file where existing html pages are added, and that is “FormMapping.xml”. You can add your page at bottom.
You can build and run application. You can see new menu “Chart of Accounts”.
You can see empty “Chart of Accounts” page when you click on new menu.
...
Here we will explain all menus one by one with examples of "How data is fetched from WPF application to Web Application and saved back to WPF Application from Web application using Genie SDK?".
Vehicle Check
Vehicle Check is used as safety measure application in which driver has to enter vehicle code/ODO and also check for any issue. If driver see any issue, he must need to report that issue and replace vehicle by finding another vehicle and assigning to himself. Then. he can mark "Vehicle Check Done".
To build Vehicle Check page, we need to see traffic debug and XML request to identify activity name and style.
Code Block | ||
---|---|---|
| ||
<div class="row" data-ex-bind="activity" data-ex-activityname="ERP.TourRun" data-ex-activitystyle="VehicleCheck" data-ex-pollmethod="clientPoll">
</div> |
We need to replicate fields in Web application as exist in WPF application after adding static header Vehicle code/rego.
To add static field "Rego/License No:"; use data-ex-bind to "field", and data-ex-fieldid to "Vehicle.RegoLicenceNo".
Code Block | ||
---|---|---|
| ||
<div class="input-group" data-ex-bind="field" data-ex-fieldid="Vehicle.RegoLicenceNo">
<label data-ex-attribute="label" class="control-label"></label>
<span data-ex-attribute="value" class="form-control-static"></span>
</div> |
To add ODO input field; use data-ex-bind to "field" and data-ex-fieldid to "ODO.Start".
Code Block | ||
---|---|---|
| ||
<div class="input-group" data-ex-bind="field" data-ex-fieldid="ODO.Start">
<span data-ex-attribute="label" class="input-group-addon">ODO</span>
<input data-ex-attribute="value" type="number" class="form-control" min="0">
</div> |