Posts

Showing posts from June, 2020

Inventory Masters -Stock Groups, Categories

Image
Inventory Masters The  Inventory Info  menu, lists the inventory masters like Stock Group, Stock Items, Units of Measure of the company, using which you can create, alter and display the inventory master details. By using  F11: Features  , you can enable the various settings under inventory features which determine the information to be entered during transaction entries. By using  F12: Configure  , you can enable the required settings of Inventory Masters . By default, the settings pertaining to Inventory Masters are set to No . If you set them to Yes , the features will be enabled. Typically, they are additional fields that appear during Masters creation which enable you to obtain more information and detailed analysis. Note:  If you press F12 anywhere in the Menu, it will take you to the configuration menu. Stock Group Stock Groups  in Inventory are similar to Groups in Accounting Masters. They are helpful in the classification of Stock Items. You can group Stock

Introduction to JavaScript

Image
Introduction to JavaScript JavaScript Introduction JavaScript was developed by Brendan Eich in 1995, and became an ECMA standard in 1997. ECMA-262 is the official name of the standard. ECMAScript is the official name of the language. JavaScript and Java completely different from each   other both in design   and concepts. Today HTML,CSS and JavaScript are very much crucial scripting languages for web developers. Let us understand their role in web development HTML-is used to define the content of a web page. CSS-is used to specifies layout of a web page. JavaScript- programs the behavior of a web page. JavaScript is a lightweight, interpreted scripting programming language. It is designed for creating network-centric applications. JavaScript  is extremely  easy to implement because   it's integrated with HTML. It is open and cross-platform. JavaScript can be used in developing great front-end  also  as back-end softwares using different Javascript b

CSS Navigation Bar

CSS  Navigation Bar Navigation Bar is the important component of a website. It gives us ease of navigating important links at one place. Normally there are two types of Navigation Bars 1)      Vertical 2)     Horizontal Vertical Navigation Bar Let us create a vertical navigation bar in a step by step manner. A navigation bar needs standard HTML as a base. In this chapter we will use lists to create navigation bars. A navigation bar is basically a list of links, so using the <ul> and <li> elements makes perfect sense: So the basic html code would look like this. <!DOCTYPE html> <html> <body> <ul>   <li><a href="#home">Home</a></li>   <li><a href="#news">News</a></li>   <li><a href="#contact">Contact</a></li>   <li><a href="#about">About</a></li> </ul> </body> </htm