Tag: Zoho Features
Jquery | DataTables warning: table id – Cannot reinitialise DataTable
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
Safari downloading files in .csv.html format | Workaround
Problem In one of the software we are developing, we faced a strange problem in Safari browser on Mac machine. A link on webpage was provided to download a file in .CSV format (server side code written in CakePHP). In
Zoho CRM Editions and Limitations
What you cannot do in which type of Zoho CRM license Zoho CRM is available in many editions and each edition has different set of features. In this article we are trying to cover each edition and list corresponding key
Salesforce | Sort “wrapper class” objects alphabetically based on a String parameter
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
Salesforce | Different ways to use datepicker on visualforce page
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}”
PHP | Amazon S3 | Check if a file or folder already exists on Amazon S3 Bucket
To check if a file or folder already exists on Amazon S3 Bucket, use the following code Code: $info = $client->doesObjectExist($bucket, $FileName) if ($info) { echo ‘File exists’; } else { echo ‘File does not exists’; } Webner Solutions is
Zoho CRM Editions Comparison Table
Editions Free Edition Standard Edition Professional Edition Enterprise Edition CRM Plus Edition Pricing Monthly pricing (Billed annually) Free for 10 users $12 /user / month $20 /user / month $40 /user / month/td> $50 /user / month Monthly pricing (Billed
AWS S3 | How to get the count of files in a folder in AWS S3
There was a task in which we were required to get each folder name with count of files it contains from an AWS S3 bucket. If we used the general approach to start a counter and increment that in a
Upgrade to php 5.6 and apache 2.2 to apache 2.4.17 in ubuntu 12.04
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