Quantcast
Channel: Everything Technical » Other Programming
Browsing latest articles
Browse All 10 View Live

Understanding Peoplecode – SaveEdit, SavePreChange, SavePostChange Events

SaveEdit The SaveEdit event is intiated whenever a user attempts to save the component. You can use SaveEdit PeopleCode to validate the consistency of data in component fields. Whenever a validation...

View Article


Understanding Peoplecode – Workflow Simple Example

Please go through the article below to understand What is a WORKFLOW , how to design and prepare workflows quickly with a simple example. Further, some enhancements and alternatives are also mentioned...

View Article


Understanding Peoplecode – RowInsert, RowDelete, RowSelect Events

RowInsert When a user adds a row of data to a scrollarea or grid, the Component Processor generates a RowInsert event. Important things to Note Rowinit is also executed when a row is inserted, so write...

View Article

Understanding Peoplecode – Variables

Variables are storage places for text or numbers that you define and manipulate. In peoplecode, each variable type starts with special character. Scope of a Variable The scope of a variable is the part...

View Article

Image may be NSFW.
Clik here to view.

Draw directions between two locations using google maps

In earlier tutorials, we have learnt the basics of google maps and looked through examples like creating a store locator. In this tutorial, we will learn how to Draw directions between two locations...

View Article


Image may be NSFW.
Clik here to view.

Make directions draggable using Google Maps v3

In a earlier article we have gone through how to draw directions between two locations. In this article we will learn how to make directions draggable using Google Maps v3. Make directions draggable...

View Article

System variables in People code

PeopleTools provides a number of system variables that provide access to system information. System variables in peoplecode are prefixed with the “%” character, rather than the “&” character. You...

View Article

Peoplesoft Functions

A function is a named section of a program that performs a specific task that can be reused. The main advantages of functions are resusability and ease of maintainance. Peoplesoft functions Listed...

View Article


Image may be NSFW.
Clik here to view.

How to Delete Rows from Table using Javascript

<html> <head runat="server"> <title></title> <link type="text/css" rel="Stylesheet" href="Styles.css" /> <script language="javascript" type="text/javascript">...

View Article


Image may be NSFW.
Clik here to view.

How to Add new row to Table using Javascript

Added a simple button to the page. When the user clicks on the button, we invoke fnAddRows where we get user input from product controls and add them to a HTML table tblProducts. <html> <head...

View Article
Browsing latest articles
Browse All 10 View Live