• Raja Sekhara Reddy M V
  • NEWBIE
  • 0 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 1
    Replies
Hi , 
When I am trying install force.com ide pulgin to my vm machine. I am getting this issue.


Cannot complete the install because one or more required items could not be found.
  Software being installed: Force.com IDE 28.0.1.201309101331 (com.salesforce.ide.feature.feature.group 28.0.1.201309101331)
  Missing requirement: Force.com IDE API 28.0.0.201307090948 (com.salesforce.ide.api 28.0.0.201307090948) requires 'package org.apache.log4j 0.0.0' but it could not be found
  Missing requirement: Force.com IDE API 28.0.0.201307091110 (com.salesforce.ide.api 28.0.0.201307091110) requires 'package org.apache.log4j 0.0.0' but it could not be found
  Missing requirement: Force.com IDE API 28.0.1.201309101331 (com.salesforce.ide.api 28.0.1.201309101331) requires 'package org.apache.log4j 0.0.0' but it could not be found
  Missing requirement: Force.com IDE Core 28.0.0.201307090948 (com.salesforce.ide.core 28.0.0.201307090948) requires 'package org.apache.log4j 0.0.0' but it could not be found
  Missing requirement: Force.com IDE Core 28.0.1.201309101331 (com.salesforce.ide.core 28.0.1.201309101331) requires 'package org.apache.log4j 0.0.0' but it could not be found
  Cannot satisfy dependency:
    From: Force.com IDE Core 28.0.0.201307091110 (com.salesforce.ide.core 28.0.0.201307091110)
    To: bundle com.salesforce.ide.api [28.0.0,29.0.0)
  Cannot satisfy dependency:
    From: Force.com IDE 28.0.1.201309101331 (com.salesforce.ide.feature.feature.group 28.0.1.201309101331)
    To: com.salesforce.ide.core [28.0.0,29.0.0)

Hi all,
 

Need help on getting help text with out using any objects or fields. Please look in to this code snippet

 <apex:page controller="ActionSupFunController">
    <apex:form >
        Click me to call action function method  
        <apex:inputcheckbox onmouseover="openMemberPop()" /><br></br> <br></br>  
        <apex:image onmouseover="openMemberPop()" onmouseout="clearMemberPop()" url="http://www.google.co.in/url?sa=i&rct=j&q=&esrc=s&frm=1&source=images&cd=&cad=rja&uact=8&docid=jdG1dmgwZ2M29M&tbnid=cv1BApg8TUznjM:&ved=&url=http%3A%2F%2Fbyronmiki.com%2F%3Fp%3D432&ei=jvvhU4rTOpKyyATyqoDQDA&bvm=bv.72197243,d.aWw&psig=AFQjCNHTmRYsHjNp76Hvb89XUGuYxNJbKw&ust=1407405327250741 (http://www.google.co.in/url?sa=i&rct=j&q=&esrc=s&frm=1&source=images&cd=&cad=rja&uact=8&docid=jdG1dmgwZ2M29M&tbnid=cv1BApg8TUznjM:&ved=&url=http%3A%2F%2Fbyronmiki.com%2F%3Fp%3D432&ei=jvvhU4rTOpKyyATyqoDQDA&bvm=bv.72197243,d.aWw&psig=AFQjCNHTmRYsHjNp76Hvb89XUGuYxNJbKw&ust=1407405327250741)" />
       
        <script>
            function openMemberPop()
            {
                document.getElementById('MemberPopUp').style.display = 'block';
                document.getElementById('MemberPopUpText').innerHTML = "Commercial associates must authenticate with 2 of the following and Medicare associates must authenticate with 3 ";
            }
            function clearMemberPop()
            {
                document.getElementById('MemberPopUp').style.display = 'none';
                document.getElementById('MemberPopUpText').innerHTML = "";
            }
        </script>
    </apex:form>
</apex:page>

Hi all,
 

Need help on getting help text with out using any objects or fields. Please look in to this code snippet

 <apex:page controller="ActionSupFunController">
    <apex:form >
        Click me to call action function method  
        <apex:inputcheckbox onmouseover="openMemberPop()" /><br></br> <br></br>  
        <apex:image onmouseover="openMemberPop()" onmouseout="clearMemberPop()" url="http://www.google.co.in/url?sa=i&rct=j&q=&esrc=s&frm=1&source=images&cd=&cad=rja&uact=8&docid=jdG1dmgwZ2M29M&tbnid=cv1BApg8TUznjM:&ved=&url=http%3A%2F%2Fbyronmiki.com%2F%3Fp%3D432&ei=jvvhU4rTOpKyyATyqoDQDA&bvm=bv.72197243,d.aWw&psig=AFQjCNHTmRYsHjNp76Hvb89XUGuYxNJbKw&ust=1407405327250741 (http://www.google.co.in/url?sa=i&rct=j&q=&esrc=s&frm=1&source=images&cd=&cad=rja&uact=8&docid=jdG1dmgwZ2M29M&tbnid=cv1BApg8TUznjM:&ved=&url=http%3A%2F%2Fbyronmiki.com%2F%3Fp%3D432&ei=jvvhU4rTOpKyyATyqoDQDA&bvm=bv.72197243,d.aWw&psig=AFQjCNHTmRYsHjNp76Hvb89XUGuYxNJbKw&ust=1407405327250741)" />
       
        <script>
            function openMemberPop()
            {
                document.getElementById('MemberPopUp').style.display = 'block';
                document.getElementById('MemberPopUpText').innerHTML = "Commercial associates must authenticate with 2 of the following and Medicare associates must authenticate with 3 ";
            }
            function clearMemberPop()
            {
                document.getElementById('MemberPopUp').style.display = 'none';
                document.getElementById('MemberPopUpText').innerHTML = "";
            }
        </script>
    </apex:form>
</apex:page>