20 11, 2018

Jquery | DataTables warning: table id – Cannot reinitialise DataTable

2020-01-20T12:16:08+00:00November 20, 2018|Mobile, Salesforce, Web Development, Zoho|2 Comments

|
| ByWebner

If you try to set properties of Jquery datatable 2 times as below, it will give an error: table = $('#product-data-table').DataTable({stateSave: true}) ; table = $('#product-data-table').DataTable ({"aoColumns": [ { "bSortable": false },null,null,null ] }); "DataTables warning: table id=product-data-table - Cannot [...]

26 08, 2018

Salesforce | Sort “wrapper class” objects alphabetically based on a String parameter

2019-01-18T13:29:17+00:00August 26, 2018|Mobile, Salesforce, Web Development, Zoho|0 Comments

|
| ByWebner

Suppose we have a Wrapper class with fName as a string instance variable and we want to sort a list of objects alphabetically based on value of this variable. Implement Comparable interface global class MyWrapperclass implements Comparable { public String [...]

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}" [...]

23 02, 2018

Upgrade to php 5.6 and apache 2.2 to apache 2.4.17 in ubuntu 12.04

2019-01-17T13:19:56+00:00February 23, 2018|Linux, Windows, Mac, Mobile, PHP Frameworks, Salesforce, Web Development, Zoho|1 Comment

|
| ByWebner

These are the steps to upgrade to PHP 5.6: Add the PPA containing version 5.6 of php for Ubuntu 12.04: sudo apt-add-repository ppa:ondrej/php5-5.6 sudo apt-add-repository ppa:ondrej/php5 Run these command in terminal to upgrade php : sudo apt-get update If everything [...]

21 04, 2017

Zoho Integration with Dropbox

2018-02-21T04:59:16+00:00April 21, 2017|Web Development, Zoho|0 Comments

|
| ByWebner

This post briefly describes how to connect to dropbox from Zoho CRM in Deluge script and create a folder in Dropbox. Further integration can be done as required according to your project. 1. Login into your Dropbox account and generate [...]

13 01, 2017

Salesforce | Trap incoming email and extract email content with attachments in salesforce

2018-02-19T07:28:33+00:00January 13, 2017|Mobile, Salesforce, Web Development, Zoho|0 Comments

|
| ByWebner

Problem: Trap incoming email and extract email content with attachments in Salesforce Solution: Salesforce provides us a mechanism to trap incoming emails on a specific email id and extra email contents including attachments out of it. To achieve this we [...]

Go to Top