-
ChatterFeed
-
0Best Answers
-
1Likes Received
-
0Likes Given
-
18Questions
-
4Replies
test
what is the use of OID here and Why we use RET URL pls explain?
<body>
<form action="https://dtdcservice--DEV.cs31.my.salesforce.com/servlet/servlet.WebToCase?encoding=UTF-8" method="POST">
<input type=hidden name="orgid" value="00Dp00000000OXn">
<input type=hidden name="retURL" value="https://www.google.co.in/">
<input type=hidden name="recordType" id="recordType" value="01290000000i3cs"/>
<body>
<form action="https://dtdcservice--DEV.cs31.my.salesforce.com/servlet/servlet.WebToCase?encoding=UTF-8" method="POST">
<input type=hidden name="orgid" value="00Dp00000000OXn">
<input type=hidden name="retURL" value="https://www.google.co.in/">
<input type=hidden name="recordType" id="recordType" value="01290000000i3cs"/>
- Pavan kumar 546
- December 17, 2015
- Like
- 0
- Continue reading or reply
send me answer pls
i have 2 picklists
one stae members
another country
members
in soql how to display the members
- Pavan kumar 546
- December 11, 2015
- Like
- 0
- Continue reading or reply
- Pavan kumar 546
- December 11, 2015
- Like
- 0
- Continue reading or reply
hii friends how can write soql query for this one pls suggest me..to retrieve the opportunities that are closed on friday in the years 2013and 2015hii friends how can write soql query for this one pls suggest me..
hii friends how can write soql query for this one pls suggest me..to retrieve the opportunities that are closed on friday in the years 2013and 2015hii friends how can write soql query for this one pls suggest me..
- Pavan kumar 546
- December 10, 2015
- Like
- 0
- Continue reading or reply
can any one give me the real time senarios on triggers ..(ie;how can i use it and where i have to use it) pls dont give me defintions..!!
can any one give me the real time senarios on triggers ..(ie;how can i use it and where i have to use it) pls dont give me defintions..!!
- Pavan kumar 546
- December 10, 2015
- Like
- 0
- Continue reading or reply
Any One Pls Help To write Trigger For Below Senario?
my due date is 25/10/2015. If I change it to 20/10/2015, I want to be allowed to save. If I change it to 30/10/2015, I want to get an error.
- Pavan kumar 546
- November 22, 2015
- Like
- 0
- Continue reading or reply
pls help me in writting a triigers how to start and how to finish?
pls help me in writting a triigers how to start and how to finish?
- Pavan kumar 546
- November 22, 2015
- Like
- 0
- Continue reading or reply
wrapper class...?
Can any one give detail explanation about wrapper class?and how can we use it as a container of different datatypes could u please explain through simmple example..?
- Pavan kumar 546
- November 18, 2015
- Like
- 0
- Continue reading or reply
- Pavan kumar 546
- November 17, 2015
- Like
- 0
- Continue reading or reply
Can any one explain how this code will execute?
<apex:page controller="AccountSelectClassController" sidebar="false">
<script type="text/javascript">
function selectAllCheckboxes(obj,receivedInputID){
var inputCheckBox = document.getElementsByTagName("input");
for(var i=0; i<inputCheckBox.length; i++){
if(inputCheckBox[i].id.indexOf(receivedInputID)!=-1){
inputCheckBox[i].checked = obj.checked;
}
}
}
</script>
<apex:form >
<apex:pageBlock >
<apex:pageBlockButtons >
<apex:commandButton value="Show Selected Accounts" action="{!processSelected}" rerender="table2"/>
</apex:pageBlockButtons>
<apex:pageblockSection title="All Accounts" collapsible="false" columns="2">
<apex:pageBlockTable value="{!wrapAccountList}" var="accWrap" id="table" title="All Accounts">
<apex:column >
<apex:facet name="header">
<apex:inputCheckbox onclick="selectAllCheckboxes(this,'inputId')"/>
</apex:facet>
<apex:inputCheckbox value="{!accWrap.selected}" id="inputId"/>
</apex:column>
<apex:column value="{!accWrap.acc.Name}" />
<apex:column value="{!accWrap.acc.BillingState}" />
<apex:column value="{!accWrap.acc.Phone}" />
</apex:pageBlockTable>
<apex:pageBlockTable value="{!selectedAccounts}" var="c" id="table2" title="Selected Accounts">
<apex:column value="{!c.Name}" headerValue="Account Name"/>
<apex:column value="{!c.BillingState}" headerValue="Billing State"/>
<apex:column value="{!c.Phone}" headerValue="Phone"/>
</apex:pageBlockTable>
</apex:pageblockSection>
</apex:pageBlock>
</apex:form>
</apex:page>
- Pavan kumar 546
- November 12, 2015
- Like
- 0
- Continue reading or reply
what is view state and need a steps how can we reduce view state without help of transient
view state and need a steps how can we reduce view state without help of transient
- Pavan kumar 546
- November 12, 2015
- Like
- 1
- Continue reading or reply
what Ret Url and Save Url? How Can we Use these?
what Ret Url and Save Url? How Can we Use these?
- Pavan kumar 546
- November 06, 2015
- Like
- 0
- Continue reading or reply
- Pavan kumar 546
- November 06, 2015
- Like
- 0
- Continue reading or reply
Why does trigger.new and trigger.old return a list?
Why does trigger.new and trigger.old return a list?
- Pavan kumar 546
- November 04, 2015
- Like
- 0
- Continue reading or reply
Ajax components
hi i am new be of VF .can any one give me live examples on Ajax Components in visualforce?please give littele senarious which situation we can use them?
hi i am new be of VF .can any one give me live examples on Ajax Components in visualforce?please give littele senarious which situation we can use them?
hi i am new be of VF .can any one give me live examples on Ajax Components in visualforce?please give littele senarious which situation we can use them?
- Pavan kumar 546
- October 24, 2015
- Like
- 0
- Continue reading or reply
what is view state and need a steps how can we reduce view state without help of transient
view state and need a steps how can we reduce view state without help of transient
- Pavan kumar 546
- November 12, 2015
- Like
- 1
- Continue reading or reply
send me answer pls
i have 2 picklists
one stae members
another country
members
in soql how to display the members
- Pavan kumar 546
- December 11, 2015
- Like
- 0
- Continue reading or reply
Can any one explain how this code will execute?
<apex:page controller="AccountSelectClassController" sidebar="false">
<script type="text/javascript">
function selectAllCheckboxes(obj,receivedInputID){
var inputCheckBox = document.getElementsByTagName("input");
for(var i=0; i<inputCheckBox.length; i++){
if(inputCheckBox[i].id.indexOf(receivedInputID)!=-1){
inputCheckBox[i].checked = obj.checked;
}
}
}
</script>
<apex:form >
<apex:pageBlock >
<apex:pageBlockButtons >
<apex:commandButton value="Show Selected Accounts" action="{!processSelected}" rerender="table2"/>
</apex:pageBlockButtons>
<apex:pageblockSection title="All Accounts" collapsible="false" columns="2">
<apex:pageBlockTable value="{!wrapAccountList}" var="accWrap" id="table" title="All Accounts">
<apex:column >
<apex:facet name="header">
<apex:inputCheckbox onclick="selectAllCheckboxes(this,'inputId')"/>
</apex:facet>
<apex:inputCheckbox value="{!accWrap.selected}" id="inputId"/>
</apex:column>
<apex:column value="{!accWrap.acc.Name}" />
<apex:column value="{!accWrap.acc.BillingState}" />
<apex:column value="{!accWrap.acc.Phone}" />
</apex:pageBlockTable>
<apex:pageBlockTable value="{!selectedAccounts}" var="c" id="table2" title="Selected Accounts">
<apex:column value="{!c.Name}" headerValue="Account Name"/>
<apex:column value="{!c.BillingState}" headerValue="Billing State"/>
<apex:column value="{!c.Phone}" headerValue="Phone"/>
</apex:pageBlockTable>
</apex:pageblockSection>
</apex:pageBlock>
</apex:form>
</apex:page>
- Pavan kumar 546
- November 12, 2015
- Like
- 0
- Continue reading or reply
- Ajju
- June 25, 2014
- Like
- 2
- Continue reading or reply