In my last blog I showed you how to find the version of the jQuery library being used by sap-ui-core.js. In this blog I’ll show you how to change the jQuery version used by SAPUI5 runtime environment to a custom
How to find the jQuery version used by SAPUI5
The sap-ui-core.js is a part of the bootstrap section as shown below. It contains a copy of jQuery file. The version of the jQuery being used can be found by the command $.fn.jQuery. index.html <!DOCTYPE HTML> <html> <head> <meta http-equiv="X-UA-Compatible"
Understanding sap.ui.define by Hello World
With the introduction of the function sap.ui.define in the version 1.28, SAPUI5 has introduced the support for Asynchronous Module Definition (AMD). Note A module is a JavaScript file that can be loaded and executed in a browser. Asynchronous Module Definition
Configuration of the SAPUI5 Runtime using URL parameters
In this blog, I’ll demonstrate through a program the configuration of the SAPUI5 runtime using URL parameters. In my last blog I did that using script tag attributes. Prerequisites Install Eclipse with SAPUI5 plugins Install a server to deploy and
Configuration of the SAPUI5 Runtime using script tag attributes
SAPUI5 runtime can be configured using several options. In this blog post, I’ll demonstrate through a program the configuration of the SAPUI5 runtime using script tag attributes. So let’s get going. Prerequisites Install Eclipse with SAPUI5 plugins Install a server
SAPUI5 View Controller lifecycle methods
This blog is all about understanding the execution order of SAPUI5 view controller lifecycle methods. Lifecycle methods are auto generated in a view and controller whenever a new view is created. I’ll demonstrate the execution order of these lifecycle methods
How to find version of SAPUI5 runtime libraries
While developing SAPUI5 applications, it is important to match the server version of SAPUI5 libraries to the version of libraries used in Eclipse. After an application is deployed on the server, it will use the server version of SAPUI5 libraries.
Introduction to SAPUI5 MVC
In my last blog I talked about creating the SAPUI5 Hello World – First SAPUI5 Application. This blog talks about creating the first SAPUI5 MVC application. A Very Brief Introduction to MVC MVC stands for Model-View-Controller. It is an architectural
SAPUI5 Hello World – First SAPUI5 Application
In this blog I’ll talk about creating the first SAPUI5 Hello World project to get a basic understanding of the structure of an SAPUI5 application. This application will not display a simple Hello World text, it would do a bit
How to install SAPUI5 in Eclipse
SAPUI5 is a new user interface technology from SAP that is based on the open standards HTML5 and CSS3, the JavaScript scripting language, and the jQuery library. This blog talks about how to install SAPUI5 in Eclipse IDE. SAP has