• Rahul Gupta 76
  • NEWBIE
  • 0 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 4
    Replies
I am working on Salesforce Lightning Knowledge. Salesforce out of the box functionality allows users to schedule publishing of article for future date. Howeever this date is not visible on UI or stored in any field of Knowledge objects.
Does anyone know how to get the Future Publication date of knowledge article in Apex?
I am using below code to move to record details page:

It works in desktop but not in Salesforce1 Android App.
<apex:outputLink value="/{!q.id}">{!q.App_Contract_Name__c}</apex:outputLink>

Please help.
I am working on Salesforce Lightning Knowledge. Salesforce out of the box functionality allows users to schedule publishing of article for future date. Howeever this date is not visible on UI or stored in any field of Knowledge objects.
Does anyone know how to get the Future Publication date of knowledge article in Apex?
I am using below code to move to record details page:

It works in desktop but not in Salesforce1 Android App.
<apex:outputLink value="/{!q.id}">{!q.App_Contract_Name__c}</apex:outputLink>

Please help.
I have the following code implementation in a VF page that has been enable for SF1
function navigate(){
                
                if ( (typeof sforce != 'undefined') && (sforce != null) )  {s
                    alert('parentId  {!parentDBRF}');
                    sforce.one.navigateToSObject('{!parentDBRF}');
                } else {
                    window.location="/" + '{!parentDBRF}';
                }        
            }

the method is being called by :
<apex:ActionFunction name="addDBRFLine" action="{!addNewLine}" reRender="msgs" oncomplete="navigate();" />

The issue comes with a user that have the following mobile device specification:
  • Iphone 5c version: 8.1.2
  • Saleforce 1 v7.0.1
The user does not get redirected when the navigate method execute. Although the alert message does pop-up and the recordId display properly.
 
  • January 23, 2015
  • Like
  • 0