Category: Zoho
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
How to find average of time in Zoho Reports?
How to find average of time in Zoho Reports? In Zoho reports, we have only Date data type that is used to store both date and time. We cannot store Time value only. Only way to store only time 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
Schedule CSV Import from Google Drive to ZOHO reports
Zoho reports have the feature to import data into a table from cloud storage like Google Drive. We can also schedule the import at a specific interval. Here in the example below, we are importing the data from Google Drive.