• Irish2013
  • NEWBIE
  • 0 Points
  • Member since 2013

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 9
    Questions
  • 3
    Replies
Hi All,
has anyone configured jenkins with git, I've configured jenkins but getting an issues while adding github repository.
Error-->
Failed to connect to repository : Error performing command: C:\Program Files\Git\cmd ls-remote -h

is there any configuration needs to be done in environment variable or anything I'm missing.
Hi,
how to build xml data in vf page to pass it into jscript method.

I need to build XML data in vf page. please help
Hi,
I'm available for part time development role, available in India, New Delhi.

experience in APEX, VF, JSCRIPT, JQUERY etc.

do contact me at irs2006@rediffmail.com
Hello Dev,

I'm trying to create a link in Table data in Vf page but, I'm unable to populate the same.
 var content = '<table >';     
 for(var i=0; i<defaults.length; i++){
      content += '<td>';
      content += '<a href=/+defaults[i].Id>'+defaults[i].Name+'</a>'; // Trying to make the data as a link...
      content +='</td>';
}
content += '</table>'; 

Td value is coming as a link but URL is coming like tes.salesforce.com/+defaults[i].Name
it's not taking the value but taking as a string, I can understand that the anchor tag is being used in single quotes.
Is there anyways we can populate this a link.

hi,
any one implemented Account hirearchy view in a tree format, please share the code, I have found some code but those are not working. please help

how to pass visual flow selections as strings into the Related Articles Widget?/

Please help me on his

HI please help me on this...

 

Public void populateSharingItems(Order_Line_Item__c oli){
                String CPQItem='';
                if(oli.CPQItem__c.contains('.'))
                    CPQItem =  oli.CPQItem__c.substring(0,oli.CPQItem__c.indexOf('.'));
                sharedServPathIdSet.add(oli.Parent_Path_Instance_ID__c);
                sharedServPathIdSet.add(oli.Path_Instance_Id__c);

                if(sharingPathNParentPathMap.containsKey(oli.Path_Instance_Id__c))
                    sharingPathNParentPathMap.get(oli.Path_Instance_Id__c).add(oli.Parent_Path_Instance_ID__c);
                else{
                    Set<String> parentPathIdSet = new Set<String>();
                    parentPathIdSet.add(oli.Parent_Path_Instance_ID__c);
                    sharingPathNParentPathMap.put(oli.Path_Instance_Id__c, parentPathIdSet);
                }
                if (mainParentOliMap.containsKey(oli.ParentOrder__c+'-'+CPQItem)){
                    Order_Line_Item__c mainOli = mainParentOliMap.get(oli.ParentOrder__c+'-'+CPQItem);
                    String mainParentServiceId='';
                    if(mainOli.Path_Instance_Id__c != null)
                        mainParentServiceId = mainOli.Master_Service_ID__c!=null ? mainOli.Master_Service_ID__c: mainOli.Primary_Service_ID__c;
                    else if(iplMainParentMap.containsKey(mainOli.id))
                        mainParentServiceId = iplMainParentMap.get(mainOli.id).Master_Service_ID__c!=null ? iplMainParentMap.get(mainOli.id).Master_Service_ID__c : iplMainParentMap.get(mainOli.id).Primary_Service_ID__c;

                    if(mainParentServiceId != '')
                        sharingPathNMainParentPathMap.put(oli.Path_Instance_Id__c+'-'+oli.Parent_Path_Instance_ID__c, mainParentServiceId);
                }
    }

 

how to pass visual flow selections as strings into the Related Articles Widget?/

Please help me on his
Hello Dev,

I'm trying to create a link in Table data in Vf page but, I'm unable to populate the same.
 var content = '<table >';     
 for(var i=0; i<defaults.length; i++){
      content += '<td>';
      content += '<a href=/+defaults[i].Id>'+defaults[i].Name+'</a>'; // Trying to make the data as a link...
      content +='</td>';
}
content += '</table>'; 

Td value is coming as a link but URL is coming like tes.salesforce.com/+defaults[i].Name
it's not taking the value but taking as a string, I can understand that the anchor tag is being used in single quotes.
Is there anyways we can populate this a link.

hi,
any one implemented Account hirearchy view in a tree format, please share the code, I have found some code but those are not working. please help