ABAYTHON

Dynamic field control annotations

How to use dynamic field control annotations in SAP UI5

Sap dynamic field-control annotation is used to dynamically change the behaviour of the UI.  The metadata generated is used to interpret and change the state of the UI control to visible,editable etc. The following needs to be defined in order to use field control annotations Smartfield in Smart Table <core:View xmlns:core=”sap.ui.core” controllerName=”initialView.controller” xmlns=”sap.m” xmlns:smart=”sap.ui.comp.smarttable” xmlns:customData=”http://schemas.sap.com/sapui5/extension/sap.ui.core.CustomData/1″ …

How to use dynamic field control annotations in SAP UI5 Read More »

rare html tags

5 HTML rare tags

In this blog, we will learn about five uncommon and under used rare HTML tags which are very useful in certain situations. 1. <abbr>: <abbr> tag is used for defining abbreviations or acronym. It is also has optional title attribute to describe or expand the abbreviation or acronym when the mouse cursor is hovered over …

5 HTML rare tags Read More »

How to add CSS to HTML?

Basic Insight into Inline, Internal and External CSS Before getting into the topic of how to add CSS to HTML, first we will try to understand what CSS means, how to write it, difference between HTML and CSS, advantages of CSS. What is CSS? CSS stands for Cascading Style Sheet. In simple terms, CSS is …

How to add CSS to HTML? Read More »

window object

What is window object?

Window object represents the window in a browser. JavaScript environment has global object. Window object is a global object. Any variables created with global scope are properties of this window object and functions are methods of it. The window object methods are used to retrieve the information from the browser window. Browser Object Model: BOM(Browser …

What is window object? Read More »

event delegation

Event Delegation in JavaScript

Event delegation in JavaScript is a pattern that efficiently handles events. It adds single event handler to parent element instead of having to register multiple event handlers to the child elements. Adding multiple event handlers to a page has adverse effects and to avoid this event delegation is used. Before jumping into event delegation, we …

Event Delegation in JavaScript Read More »