6 05, 2019

Responsive DevExtreme Grid Toolbar

2019-05-07T13:30:13+00:00May 6, 2019|Java Frameworks, Linux, Windows, Mac, Others (Technical), Web Development|0 Comments

|
| ByWebner

Introduction - Responsive DevExtreme Grid Toolbar DevExtreme is a powerful web development framework with a vast array of data presenting and formatting capabilities. It is developed by DevExpress to make responsive and platform independent application. DevExtreme makes the web development [...]

21 07, 2018

Salesforce | Different ways to use datepicker on visualforce page

2018-12-31T11:16:27+00:00July 21, 2018|Java Frameworks, Mobile, Salesforce, Web Development, Zoho|1 Comment

|
| ByWebner

1. Apex:inputfield: We can simply use apex:inputfield and bind the field with date type field and it will automatically use the Salesforce Calander: <apex:page standardcontroller=Contact> <apex:form> <apex:inputfield value=”{!Contact.Birthdate}”> </apex:form> </apex:page> 2. Apex:inputtext: <apex:page standardcontroller="testcontroller" id="vfPage"> <apex:form> <apex:inputText label="Birth Date" value="{!birthdateVariable}" [...]

9 03, 2018

SCEA 5 – My 2 cents

2019-02-06T12:23:41+00:00March 9, 2018|Java Frameworks, Web Development|0 Comments

|
| ByWebner

Recently became SUN certified Enterprise Architect after clearing all 3 parts of SCEA. It is hard to get answers to all questions one may have regarding SCEA but SCEA forum on javaranch.com is great!! I have shared my experience here [...]

2 01, 2018

AJAX Response Race Condition

2019-01-24T13:10:29+00:00January 2, 2018|Java Frameworks|0 Comments

|
| ByWebner

AJAX Response Race Condition I am working on a j2ee project in which a lot of UI screens are AJAX based. Recently we started facing problems on some screens, which were not updating correctly. On one of the screens we [...]

13 09, 2017

Java | Stripe – Handling expired credit cards

2017-11-14T10:50:10+00:00September 13, 2017|Java Frameworks|0 Comments

|
| ByWebner

Description: We are registering our customers using Stripe payment gateway where we are storing customer card details. We are doing recurring payment for customers periodic billing cycle. But if customer’s card expires or card number changes, we will not get [...]

3 07, 2017

Salesforce | Upload Document in Salesforce using javascript

2017-07-03T08:11:57+00:00July 3, 2017|Java Frameworks, Salesforce, Web Development|0 Comments

|
| ByWebner

We can create a document/attachment object record in Salesforce using Javascript by calling Salesforce soap webservice. Note - Variable __sfdcSessionId is used to store sessionid. Script files: <script type="text/javascript">// <![CDATA[ __sfdcSessionId = '{!$Api.Session_Id}'; // ]]></script> <script src="/soap/ajax/30.0/connection.js" type="text/javascript"></script> <script src="/soap/ajax/30.0/apex.js" [...]

Go to Top