Salesforce | document.getElementById(‘id’).value not working for apex:outputtext

| By Webner

If you have an apex:outputtext and you try to get its value in Javascript using document.getElementById(‘id of outputtext’).value(), that won’t work. The reason is apex:outputtext is translated to HTML SPAN element. So <apex:outputtext value=”Amount” id=”amntId”/> becomes <span id=”amtId”>Amount</span> So to

Introduction to Heroku

| By Webner

Heroku is an all-in-one cloud based platform which allows software developers to develop and host applications over Heroku cloud. The company was setup in June 2007 which initially supported Ruby programming language. Later on, support for other programming languages such

Transition Delay Property in CSS and Javascript

| By Webner

What is Transition Delay? Transition delay specifies the amount of time for the change to take place in css properties of DOM elements. Transition Delay value is defined in seconds (s) or milliseconds(ms). How to implement Transition Delay in CSS?

What is in Bootstrap apart from grid system? Why it has a Javascript file also?

| By Webner

Bootstrap has lots of other things apart from grid system such as: 1. Glyphicons: Bootstrap has inbuilt icons which we can use by icon’s class name. For Example: “glyphicon-search” will create search icon without using any external image. So Bootstrap has

Salesforce | Please use TLS 1.1 or higher when connecting to Salesforce using https

| By Webner

Salesforce login via PHP Salesforce Toolkit API may throw this exception: Please use TLS 1.1 or higher when connecting to Salesforce using https The reason is Salesforce has provided customers with the Critical Update feature Require TLS 1.1 or higher

Moodle and Java | Retrieving users’ data from Moodle using External Java Application

| By Webner

Retrieving users’ data from Moodle using External Java Application We can write a basic REST moodle client code using Java to fetch users’ records from moodle. Before writing the code, you need to perform below steps in Moodle which are

Curl | How to test a Restful web service using curl

| By Webner

Let’s consider, we have a demo Restful service (created in Java Spring here but you can create in any language) to login user which accepts username and password as input and returns Success/Failure in response. Request Object : Demo Login

Javascript | How to post Acord PDF Forms data to a Web URL

| By Webner

Description : You have Fillable PDF on which you have button “Save Entered Data”. On button you want post the form data to php file. Solution : Follow these steps : 1. Open Form with Adobe Acrobat Pro. Goto–>Tools. 2.