• NL
  • NEWBIE
  • 0 Points
  • Member since 2007

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 2
    Replies


Message Edited by NL on 12-12-2007 12:27 PM
  • December 12, 2007
  • Like
  • 0
Hi,
  I am not able to install Force.com IDE. I have given the remote site address as "http://www.adnsandbox.com/tools/ide/install/". I tried it on Eclipse3.2 and Eclipse Europa. I am getting the following error in eclipse.
        Error:
         

1) In eclipse europa
     Network connection problems encountered during search.
  Unable to access "http://download.eclipse.org/releases/europa".
    Error parsing site stream. [Premature end of file.]
    Premature end of file.
    Error parsing site stream. [Premature end of file.]
    Premature end of file.
  Unable to access "http://www.adnsandbox.com/tools/ide/install/".
    Error parsing site stream. [Premature end of file.]
    Premature end of file.
    Error parsing site stream. [Premature end of file.]
    Premature end of file.
2) In eclipse 3.2
  Network connection problems encountered during search.
  Unable to access "http://download.eclipse.org/callisto/releases".
    Unable to access site: "http://download.eclipse.org/callisto/releases" [Connection timed out: connect]
    Unable to access site: "http://download.eclipse.org/callisto/releases" [Connection timed out: connect]
  Unable to access "http://www.adnsandbox.com/tools/ide/install/".
    Unable to access site: "http://www.adnsandbox.com/tools/ide/install/" [Connection timed out: connect]
    Unable to access site: "http://www.adnsandbox.com/tools/ide/install/" [Connection timed out: connect]

Thanks,
Joseph

We're building a help system, one with a similar hierarchy as the salesforce help.  I've been having trouble finding documentation on structuring and populating nested lists using visualforce.  We have our content divided into custom objects as follows...

application - top level, not displayed, used to control the content being displayed in multiple customer portals
grouping - Above the list, names act as headers above the tree
category - these categories exand out to show topics
topic - When clicked these open directions in a div to the right of the menu.

so where I'm at...

I have a custom controller that populates the grouping list.  I'm not sure if this should even be a list since its the header for the lists contained with .

public class CODhelp {

List<grouping__c> grouping;

public List<grouping__c> getgrouping() {
if(grouping == null) grouping = [select name from Grouping__c where application__r.name = 'cod'];
return grouping;
}
}


Then I'm creating the list in the visualforce page using the following markup...

<apex:dataList value="{!grouping}" var="grouping__c" id="theList">
<apex:outputText value="{!grouping__c.name}" styleclass="treeHeader"/>
</apex:dataList>


This currently works to populate a list of grouping names for the application "cod".  However I need to go deeper for categories, topics and then the directions (which is a custom field of topic).

The html needed to generate our menu looks like this...

<ul class="tree">
<dt class="treeHeader">Grouping</dt>
<li class="closed"><a href="#">Category 1</a>
<ul>
<li><a href="directions">Topic 1</a></li>
<li><a href="directions">Topic 2</a></li>
</ul>
</li>
</ul>

Unfortunately, I'm at a loss on how to generate this structure using visualforce and populate it with the data from our custom objects.  I would greatly appreciate any suggestions or assistance on how to successfully achieve the desired result.

Thanks.