• srikanthpalla
  • NEWBIE
  • 95 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 17
    Questions
  • 7
    Replies
HI, any one can help to write trigger

I have amount field on custom object.i want write trigger for senario when i want to delete the all records where amount>10000 and also list the IDs of all deleted records
HI

Any one let me know how we will create list box fields in salesforce.please explain
how we will achive lookup for picklist values
how we will create dynamic picklist in vfpage
Hi
please let know how we will cretae image field in custom object
Any help would be appreciated
HI
my requirment is when i am clicking on radio button i want text box field please help me
Hi
 Please let know abouts how many way we will integrate External systems with REST APIs please explain
please let me know about Actionfunction and actionsupport in VF pages
Hi

please any tell me about Trigger Framework
Hi

Please in which way we can use Actionfunction in VF pages
HI

What is CallbackURL in REST APIs where exactly we use this? 
HI

please let me know what is difference between URI and Url in REST APIs?i am confusing most ofthe times.
Hi,

  Please let me know what is salesprocess in salesforce exactly.
Hi,

  any one let me know how we will pass passord fileds(Text Encryptd) in Endpoint url and what is procedure
Hi ,
 
Can we achieve the forgot password and reset password functionality using Force.com REST API?


 
HI all,

please let me know how we will write logout user with json response in REST

 
<apex:actionStatus> component:

A component that displays the status of an AJAX update request. An AJAX request can either be in progress or complete.
<apex:page standardController="Account">
<apex:form >
<apex:pageBlock mode="mainDetail">
<!-- Here actionStatus is used to display the status of an AJAX request-->
<apex:actionStatus id="showStatus">
<apex:facet name="start">
<apex:image value="/img/loading.gif"/>
</apex:facet>
</apex:actionStatus>
<apex:pageBlockSection title="Account Information" id="redSection">
<apex:inputField value="{!Account.Name}" required="true" />
<apex:pageBlockSectionItem ><apex:outputLabel > Type</apex:outputLabel>
<apex:actionRegion >
<apex:inputField value="{!Account.Type}"  >
<apex:actionSupport event="onchange"  reRender="ajaxReq" status="showStatus" />
</apex:inputField>
</apex:actionRegion>
</apex:pageBlockSectionItem>
</apex:pageBlockSection>
<apex:outputPanel id="ajaxReq">
<apex:pageBlockSection title="Account Description"  id="greenSection">
<apex:inputField value="{!Account.Description}" rendered="{!IF(Account.Type == 'Other', true, false)}" />
</apex:pageBlockSection>
</apex:outputPanel>
<apex:pageBlockButtons >
<apex:commandButton value="Save" action="{!save}" />
</apex:pageBlockButtons>
</apex:pageBlock>
</apex:form>
</apex:page>
Explanation:

In the above example, <apex:actionStatus> component displays the status of an AJAX update request.

<apex:facet name=”start”> A placeholder for content that's rendered in a specific part of the parent component.  Name=”start” is the name of the facet to be rendered. 

<apex:image value="/img/loading.gif"/> is the syntax to display image. Here loading is image name of type .png.
Refer this Status attribute (In actionSupport )component in actionStatus component using id actionStatus component.

Output: Status will be displayed when a user selects "Type" picklist value 

User-added image
HI

Any one let me know how we will create list box fields in salesforce.please explain
HI
my requirment is when i am clicking on radio button i want text box field please help me
Please Provide me a link.
Where i am learn Sales App Step by Step.
Thanks in Advance

Thanks & Regards
Jasveer Singh
HI all,

please let me know how we will write logout user with json response in REST