-
ChatterFeed
-
0Best Answers
-
0Likes Received
-
0Likes Given
-
12Questions
-
20Replies
Html input tag in VF page not working in summer 12 release
Hi I have an input tag of type radio it was working fine. But unable to find the radio buttons on the VF page after the sandbox is updated to summer 12.Please reply back ASAP as this may cause problem in production.
The below is the code
<apex:outputPanel id="board_mem">
<input type = "radio" name = "primary" id="Yes" onclick="javascript:selected('Yes');setVisibility('status_msg','block');"
oncomplete="setVisibility('status_msg','none');">Yes</input>
<input type = "radio" name = "primary" id="No" onclick="javascript:selected('No');setVisibility('status_msg','block');"
oncomplete="setVisibility('status_msg','none');">No</input>
<div id="status_msg" style="display:none;">
<apex:outputLabel value="Please Wait...."></apex:outputLabel>
</div>
</apex:outputPanel>
-
- Subha
- May 16, 2012
- Like
- 0
- Continue reading or reply
Need Urgent Help
Hi I have created one site in my development org... and give the Ideas Home as the Active Site Home Page.I have given access to this page but still it is given an error as Authorization Required..can any one please help me in solving this
-
- Subha
- December 28, 2011
- Like
- 0
- Continue reading or reply
Display Body of Attachment
Hi
I need to know is it possible to display the content in the Attachment in a VF page as PDF or in any format??? If so can anyone please tell me how to do it.. It is very urgent requirment
-
- Subha
- November 09, 2011
- Like
- 0
- Continue reading or reply
How to Clone the hidden field
Hi
When we try to clone a record I am unable to get a value of the hidden field in the cloned record.I came to know that it is a standard fuctionality of sales force. Can anyone please help me how to get that hidden field in the after insert trigger.
-
- Subha
- September 23, 2011
- Like
- 0
- Continue reading or reply
Need urgent help to get the url in trigger
Can anybody help me how to get url in trigger
The trigger is after insert and when I tried with ApexPages.currentPage() it is giving null
-
- Subha
- September 16, 2011
- Like
- 0
- Continue reading or reply
How to relate a timba survey to a specific record
Can anyone help to solve this
How to relate a timba survey to a specific record. I am getting all the responses when I relate a survey to a oppurtunity record but I need only the response that got for that particular oppurtunity....in Summary , Tell me how to relate the timba survey record to a specific opprtunity record?
-
- Subha
- August 11, 2011
- Like
- 0
- Continue reading or reply
How to combine firstname and lastname while generating report
Create a custom field that combines first and last name when generating Reports
-
- Subha
- August 03, 2011
- Like
- 0
- Continue reading or reply
link to Account name for search capability
how to link to account name for search capabilities
-
- Subha
- August 01, 2011
- Like
- 0
- Continue reading or reply
How to check email
when I have given a mail with the valid format... but the mail actually doesn't exists.. It is not showing any error . I just want to handle such situation .Can anyone help.
-
- Subha
- July 19, 2011
- Like
- 0
- Continue reading or reply
How to get value of Checkbox in a datatable
I am writing a datatable that contains data of an Object and I have added one more column that with checkbox in each row... when I submit a button I want to get the rows of selected checkboxes... Can you please tell me how to get this
-
- Subha
- July 18, 2011
- Like
- 0
- Continue reading or reply
How to add page to a tab dynamically
I want to add page dynamically to same tab when I am navigating from one page to another.. Can this be possible??? if so how??
-
- Subha
- July 14, 2011
- Like
- 0
- Continue reading or reply
Insufficient privileges
The controller that I have created is :
public class CandidateList {
Candidate__c candidate ;
public Candidate__c getCandidate() {
Id id = ApexPages.currentPage().getParameters().get('id');
candidate = [Select Id, Name from Candidate__c
where id = :ApexPages.currentPage().getParameters().get('id')];
return candidate;
}
-----------------
and the page that i developed
<apex:page Controller="CandidateList">
<apex:pageBlock title="Hello {!$User.FirstName}!">
You are displaying Candidates List.
Mouse over a Candidate's name to view his or her details.
</apex:pageBlock>
<apex:pageBlock title="Candidates">
<apex:form >
<apex:dataTable value="{!candidate}" var="contact" cellPadding="4"
border="1">
<apex:column >
<apex:outputPanel >
<apex:actionSupport event="onmouseover" rerender="detail">
<apex:param name="cid" value="{candidate__c.id}"/>
</apex:actionSupport>
{!contact.Name}
</apex:outputPanel>
</apex:column>
</apex:dataTable>
</apex:form>
</apex:pageBlock>
<apex:outputPanel id="detail">
<apex:actionStatus startText="Requesting...">
<apex:facet name="stop">
<apex:detail subject="{!$CurrentPage.parameters.cid}" relatedList="false"
title="false"/>
</apex:facet>
</apex:actionStatus>
</apex:outputPanel>
</apex:page>
Can any one suggest y I am getting Insufficient privileges when I am putting mouse on the value to get the detail
-
- Subha
- July 08, 2011
- Like
- 0
- Continue reading or reply
Html input tag in VF page not working in summer 12 release
Hi I have an input tag of type radio it was working fine. But unable to find the radio buttons on the VF page after the sandbox is updated to summer 12.Please reply back ASAP as this may cause problem in production.
The below is the code
<apex:outputPanel id="board_mem">
<input type = "radio" name = "primary" id="Yes" onclick="javascript:selected('Yes');setVisibility('status_msg','block');"
oncomplete="setVisibility('status_msg','none');">Yes</input>
<input type = "radio" name = "primary" id="No" onclick="javascript:selected('No');setVisibility('status_msg','block');"
oncomplete="setVisibility('status_msg','none');">No</input>
<div id="status_msg" style="display:none;">
<apex:outputLabel value="Please Wait...."></apex:outputLabel>
</div>
</apex:outputPanel>
- Subha
- May 16, 2012
- Like
- 0
- Continue reading or reply
Display Body of Attachment
Hi
I need to know is it possible to display the content in the Attachment in a VF page as PDF or in any format??? If so can anyone please tell me how to do it.. It is very urgent requirment
- Subha
- November 09, 2011
- Like
- 0
- Continue reading or reply
Need urgent help to get the url in trigger
Can anybody help me how to get url in trigger
The trigger is after insert and when I tried with ApexPages.currentPage() it is giving null
- Subha
- September 16, 2011
- Like
- 0
- Continue reading or reply
How to check email
when I have given a mail with the valid format... but the mail actually doesn't exists.. It is not showing any error . I just want to handle such situation .Can anyone help.
- Subha
- July 19, 2011
- Like
- 0
- Continue reading or reply
How to keep the multi pick list in visual force page with out using any object
Hi,
My requirement is developing multi picklist in visual force page with out using any salesforce object. Any one please help me how to solve these.
Thanks,
Lakshmi
- nagalakshmi
- July 14, 2011
- Like
- 0
- Continue reading or reply
How to add page to a tab dynamically
I want to add page dynamically to same tab when I am navigating from one page to another.. Can this be possible??? if so how??
- Subha
- July 14, 2011
- Like
- 0
- Continue reading or reply
Insufficient privileges
The controller that I have created is :
public class CandidateList {
Candidate__c candidate ;
public Candidate__c getCandidate() {
Id id = ApexPages.currentPage().getParameters().get('id');
candidate = [Select Id, Name from Candidate__c
where id = :ApexPages.currentPage().getParameters().get('id')];
return candidate;
}
-----------------
and the page that i developed
<apex:page Controller="CandidateList">
<apex:pageBlock title="Hello {!$User.FirstName}!">
You are displaying Candidates List.
Mouse over a Candidate's name to view his or her details.
</apex:pageBlock>
<apex:pageBlock title="Candidates">
<apex:form >
<apex:dataTable value="{!candidate}" var="contact" cellPadding="4"
border="1">
<apex:column >
<apex:outputPanel >
<apex:actionSupport event="onmouseover" rerender="detail">
<apex:param name="cid" value="{candidate__c.id}"/>
</apex:actionSupport>
{!contact.Name}
</apex:outputPanel>
</apex:column>
</apex:dataTable>
</apex:form>
</apex:pageBlock>
<apex:outputPanel id="detail">
<apex:actionStatus startText="Requesting...">
<apex:facet name="stop">
<apex:detail subject="{!$CurrentPage.parameters.cid}" relatedList="false"
title="false"/>
</apex:facet>
</apex:actionStatus>
</apex:outputPanel>
</apex:page>
Can any one suggest y I am getting Insufficient privileges when I am putting mouse on the value to get the detail
- Subha
- July 08, 2011
- Like
- 0
- Continue reading or reply