Discussions
- General Development
- Schema Development
- Apex Code Development
- Visualforce Development
- Formulas & Validation Rules
- Security
- Mobile
- Force.com Sites & Site.com
- Chatter Development
- Java Development
- .NET Development
- Perl, PHP, Python & Ruby
- Desktop Integration
- APIs and Integrations
- Visual Workflow
- Apple, Mac and OS X
- VB and Office Development
- AppExchange Directory & Packaging
- Salesforce Labs & Open Source Projects
- Other Salesforce Applications
- Jobs Board
- Force.com Discussion Boards
- :
- Developer Boards for Force.com and Database.com
- :
- Apex Code Development
- :
- By events want to display contacts
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
By events want to display contacts
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
12-10-2012 06:08 AM
Hi,
I have an issue i.e, in PBtable account object records are there.When i mouseover or mouseout on name thus related contacts displayed on a pop-up box.
Actually,i get something for Accounts i.e,when i mouseover on account ...Accounts pop-up only displayed.But i need thus related contacts.Can you resolve it.
Code:
<apex:form >
<apex:repeat value="{!Accounts}" var="acc">
<apex:inlineEditSupport event="onclick"/>
<apex:panelGrid columns="1">
<ul><li><a href="/{!acc.Id}" id="{!acc.Id}" onblur="LookupHoverDetail.getHover('{!acc.Id}').hi
</apex:panelGrid>
</apex:repeat>
</apex:form>
class:
public list<Account> getAccounts() {
list<Account> acc=[SELECT Account.Name, (SELECT Contact.Name, Contact.LastName FROM Account.Contacts) FROM Account];
return acc;
}

