Originally posted on clockworkcode:
In a previous post Creating a Swift Project in Xcode 6 and adding it to a git repo on BitBucket, I created a sample…
Month: June 2014
Using UIPageControl as a container UIViewController
Originally posted on My Memory:
Setting up the interface To setup the user interface in Interface Builder, you’ll need to create a UIPageControl and a UIScrollView within…
How to Check Your Xampp Version
Originally posted on Code with Simplest Code:
Run your xampp (apache is activated) Go to “localhost/xampp/” with your browser Your xampp version is on the top left…
Type 1:Usage of picklist in vf & Apex
Originally posted on Salesforce23:
Picklist fields contain a list of one or more items from which a user chooses a single item. They display as drop-down lists…
Type 2:Usage of picklist in vf & Apex
Originally posted on Salesforce23:
Example: Creating Picklist in Visualforce page (In Sobject its not Picklist) Lets take an example that we have one Sobject Employee__c and the…
Type 3:Usage of picklist in vf & Apex
Originally posted on Salesforce23:
Exapme: Creating Picklist In Visualforce Page itself <apex:page controller=”zvf5″ sidebar=”false” showHeader=”false”> <apex:form > <apex:selectList value=”{!myVal}” size=”3″ multiselect=”true”> <apex:selectOption itemvalue=”One” itemlabel=”1″/> <apex:selectOption itemvalue=”Two” itemlabel=”2″/>…
Type 4:Usage of picklist in vf & Apex
Originally posted on Salesforce23:
Some times we need to display picklist in Vf page which is of type picklist in Sobject. Acutally we are not displaying the…
Type 5:Usage of Dynamic picklist in vf & Apex
Originally posted on Salesforce23:
<apex:page controller=”dynamicpickone” sidebar=”false” showHeader=”false”> <apex:form > <apex:selectList id=”selectpick” size=”1″ value=”{!selectedValue}”> <apex:selectOptions value=”{!pickOptions}”/> <apex:actionSupport event=”onchange” reRender=”one”/> </apex:selectList> <apex:outputPanel id=”one”>Selected Value is: <apex:outputText value=”{!selectedValue}” />…
Cloud Lab-15: How to Build a vSphere Environment – “vCenter User Management and Identity Source”
Originally posted on VIRTUALIZATION BLOG:
Before start building our cloud environment on the basis of our previous Lab posts. lets quick recall what we have covered yet. Install Active Directory…
How to use Openfiler (storage management appliance) with VMware ESXI 5.5
Originally posted on Sayem's Blog:
Openfiler is a network storage operating system which has the excellent integration capabilities for virtualization environment. To configure Openfiler in you…