How to convert an object into Json String in Unity3D Script (C#)

| By Webner

How to convert an object into JSON String in Unity3D Script (C#)? Let’s say I have a class: class User { String firstName; String lastName; String userName; } User obj = new User { firstName = “Shalini”, lastName = “Vashist”,

Salesforce Mobile | Error: OAUTH_APPROVAL_ERROR_GENERIC

| By Webner

SALESFORCE MOBILE Authorization Error after successful login from mobile in salesforce connected app When a user requests their Salesforce data from within the external application (the consumer’s page), the user must be authenticated by Salesforce. After login into the native

How to install .box extension Virtual Machine

| By Webner

To install and use .box extension machine we have to follow these steps: 1.  Installing Virtualbox: $ sudo  apt-get install virtualbox $ sudo apt-get install virtualbox-dkms 2.   Installing vagrant: Please don’t install the repository version, because this is very old and

NetSuite API | operator undefined for search

| By Webner

On filtering contacts coming from Netsuite CRM based on last modified date, gives error “operator undefined for search”: Below is the code that retrieves all the contacts from Netsuite CRM: ContactSearch custSearch = new ContactSearch(); ContactSearchBasic custSearchBasic = new ContactSearchBasic();

CSS3 Viewport units vh, vw, vmin and vmax explained

| By Webner

CSS3 Viewport units vh, vw, vmin and vmax explained Sometimes we need to fit our webpage content into viewport (visible browser window). Some developers achieve this using Javascript by checking the size of viewport and then they resize the content

Salesforce | Passing data via Javascript to Apex Controller

| By Webner

Some situations occur when we become unable to pass the data from visualforce page to apex controller directly.  For example: Suppose you have three divs (todoDiv, doingDiv, doneDiv) that are showing some tasks through the List from apex controller. It