• richa mohanty
  • NEWBIE
  • -1 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 9
    Questions
  • 3
    Replies
All changes/additions to data associated with the Case after its initial
creation should be tracked in a Case History/Audit log allowing us to tell
what was changed, when and by whom. can ny one work upon this requirement
where to get salesforce dummy projects ??
<apex:page controller="ColourTableFormat" tabStyle="Account">
<apex:form >
<apex:outputPanel id="out">
<apex:selectCheckboxes value="{!colour}" title ="choose a colour"/>
<apex:pageBlock Title="Colour">
<apex:pageBlockSection title="Colour Summary">
<apex:pageBlockTable value="{!colour}" var="C" columns="3">
<apex:column headerValue="COLOUR"/ >
<apex:selectList value="{!colour}"  Multiselect="false" size="1"/ >
<apex:selectOptions value="{!items}" ></apex:selectOptions>
<apex:actionStatus id="status" startText="testing..."></apex:actionStatus>
</apex:pageBlockTable>
</apex:pageBlockSection>
</apex:pageBlock>
</apex:outputPanel>
</apex:form>
</apex:page>






public class ColourTableFormat
{
   
public boolean checkbox;
public string colour {set;get;}
public integer wavelength {set;get;}
public string description {set;get;}
public list<selectOption> options {get;set;}


public ColourTableFormat()
{
options = new list<selectOption>() ;
checkbox = false;
colour = ' ';
description = ' ';

}
public list<selectOption> getitems()
{
options.add(new selectOption('','----None-----'));
options.add(new selectOption('red','red'));
options.add(new selectOption('green','green'));
options.add(new selectOption('yellow','yellow'));
options.add(new selectOption('','----None-----'));
options.add(new selectOption('15','15'));
options.add(new selectOption('20','20'));
options.add(new selectOption('25','25'));
options.add(new selectOption('','----None-----'));
options.add(new selectOption('Red is the color next to orange at the end of the visible spectrum','Red is the color next to orange at the end of the visible spectrum'));
options.add(new selectOption('Green is the color of nature fertility life','Green is the color of nature fertility life'));
options.add(new selectOption('The color yellow is the color of the mind and the intellect','The color yellow is the color of the mind and the intellect'));

return options;

}
public string getcolour()

{
return colour;
}
public void setcolour()
{
this.colour=colour;
}
}
like we  use string, integer for red and 10 ,If i want  to include a description about an colur (1 paragraph) which datatype type can i use?
 Im new in salesforce so pls help me out
like we  use string, integer for red and 10 ,If i want  to include a description about an colur (1 paragraph) which datatype type can i use?
Hi,

Currently we are using Salesforce Professional Edition, How to Insert / Update / Export the data from Salesforce apart from Dataloader.io

Thanks & Regards,
Rajesh Potnuru
 Im new in salesforce so pls help me out