User Activity
06-21-2024
List Of Most Commonly Shown Status Code Along With Their Saying.....
100 : Continue101 : Switching Protocol102: Processing (WebDAV)103 : Early Hints200: OK201 : Created202 : Accepted203 : Non-Authoritative Information204 : No Content205 : Reset Con...
10-03-2023
Hi All, I'm starting a new series of short and interesting articles. This is the first one in the series. I hope you will like it.
Have you ever faced it when you try to assign a field to a variable and it results in an empty value?
var field = cur...
10-07-2020
Length
The length property returns the length of a string.
var txt = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
var sln = txt.length;
IndexOf
The indexOf() method returns the index of (the position of) the first occurrence of a specified text in a string
var str ...
09-19-2020
1. Tostring
The toString() method is what it sounds, returns the number as a string. However, if you provide a parameter, such as 2, 8, or 16 it will return binary, octal or hexadecimal value respectively.
var num = 123;
num.toString();
// "123"
(100...
08-12-2019
Field-Based APIs
Hide/Display variable : g_form.setDisplay(<fld>,true/false);
Disable a field : g_form.setDisable(<fld>,true/false);
Field ReadOnly : g_form.setReadOnly(<fld>,true/false);
Clear Value fro...