Posts

Materialize Your Visualforce Page Using Google Material Design

A Little background About this Post Now-a-days there are lot of UI frameworks available in Market and many of them can be utilized in visualforce pages to improve UI/UX. Recently I saw harshit pandey’s post shared by jitendra zaa on Google Material Design ,I did my hands dirty using angular-material framework based on Google material design .  What is Material Design ? Material Design is a specification for a unified system of visual, motion, and interaction design that adapts across different devices and different screen sizes. Please visit http://www.google.com/design/spec/material-design/introduction.html to understand it. What is Angular-Material Framework ? The Angular Material project is an implementation of Material Design in Angular.js. This project provides a set of reusable, well-tested, and accessible UI components based on the Material Design system. Please visit https://material.angularjs.org/latest/#/  to understand it. Visual Sa...

AnglarJS ,Visualforce And Javascript Remoting

A Little Background About This Post: In my previous AngularJS posts ,we have gone through AngularJS setup and AngularJS Data Search with dummy data . Here is the next step to display salesforce data instead of dummy data with angularJS.                                                                                     Below are the components of it. 1.     AngularJS MVC framework in Visualforce Page. 2.     Javascript Remoting to query salesforce data The main idea here is to display accounts and related contacts and opportunities in a console form to display related contacts and opportunities as soon as we click on accounts using angularJS ,javascript remoting in visualforce page . Apex Class : pub...

Salesforce To Citrix Integration

Image
A Little Background About This Post: In my recent projects , I met some of my salesforce users using Citrix applications such as 1.        Go To Webinar, 2.        Go To Meeting, 3.        Go To Assist They are using  AppExchange products for salesforce – Citrix  integration but still ended up doing manual copy –paste work from Citrix applications to salesforce like polls, surveys questions answers etc . I got an opportunity to automate above work and this post explains same piece of work . Happy To See: I had look into Citrix GoToWebinar API and was happy to see that. 1.        It provide beautiful Rest API. 2.        It uses OAuth for authorization and authentication. Tool Needed For Demonstration : 1.        Salesforce Developer Org . 2.    ...

AngularJS in visualforce Pages With Data

Why This Post? In my  Previous post  , We have gone through AngularJS setup , Here is the our next step towards it . We will use few angularJS tags to make data search very easy over visualforce page. Here is the sample code for same with explanation in comments. <!- Visualforce Page Start--> <apex:page >     <script>         <!- AngularJS static resource inclusion -->         <apex:includeScript value="{!$Resource.AngularJS}"/>                       <!- Registers the area for which angularJS would work-->             var app = angular.module('myApp',[]);             <!- Creates a controller and bing with above area-->             app.controller("AccountController", function($scope) {       ...