UI5

SAP UI5

http vs https

HTTP vs HTTPS

Both HTTP and HTTPS are protocols for communicating over the internet. If you have a website or probably used a website might have come across these things namely http:// or https:// What is HTTP ? Hyper Text Trasfer Protocol is a set of rules defining how information is transfered over internet. It is a stateless …

HTTP vs HTTPS Read More »

How to use CSS class?

A CSS class is an attribute used to define a group of HTML elements a unique styling and formatting. Class is a group of elements that are similar or unique. For example, when we want to add blue text to a set of paragraphs, or bold red text to set of headings in our website …

How to use CSS class? Read More »

Set default columns in UI5 Smart table

How to select the default columns for Smart table in SAP UI5

‘initiallyVisibleFields’ property of the SAP UI5 Smart table is used to select the default columns for the smart table. initiallyVisibleFields=”Id,Name” As you see above, the fields(columns) of the smart table are separated by Comma. The columns will be visible in the same order as mentioned above with customer Id as first column and Customer Name …

How to select the default columns for Smart table in SAP UI5 Read More »

split method

How to split a string into an array of substrings?

JavaScript has many string methods. Today we will explore split() method. As the name suggests it splits a string. A string is a sequence of characters in a programming language. Eg: “Abaython”, “JavaScript”. We can create a string using const info = “Hello Abaython!” const info = new String(“Hello Abaython!”); split() method: String method used …

How to split a string into an array of substrings? Read More »