• dhunt
  • NEWBIE
  • 5 Points
  • Member since 2013

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 5
    Replies
If Lightning is enabled for the org but user is viewing in classic mode, custom visualforce pages aren't showing header or sidebar. (Winter 16)
 
<apex:page doctype="html-5.0" showHeader="true" showChat="false"  controller="customController"  >
Is anyone else having this issue?
 
  • September 23, 2015
  • Like
  • 0
Receiving this error when editing a visualforce page in sandbox through developer console or third party IDE.  This page has been working in production for some time. Both page and controller are set to version 32 in sandbox and production. 
The page can be edited directly through Develop->Pages.

Here's a very simplified version of the page which produces the error
 
<apex:page standardController="User" extensions="SalesRepGoalController2"> 

<b>Hello World!</b>
</apex:page>
and controller
 
public with sharing class SalesRepGoalController2{
private String userID = '' ; 	
public SalesRepGoalController2(ApexPages.StandardController c)
	{
		userID = c.getId(); 
	}
}

Java 1.7 was installed, but has been uninstalled.

Windows 8 Enterprise,  64bit
IE 10
JRE none

 
  • July 20, 2015
  • Like
  • 1
We have SSO enabled, which was working for Salesforce licenses and a custom license for BMC Remedyforce (force native app).  Our Active Directory Federation server certificate expired.  After replacing, SSO works for users with a full Salesforce license, but not for users with the Remedyforce custom license.  BMC considers this a Salesforce issue, and I haven't found any settings for their app related to SSO.
Any suggestions?
  • February 05, 2014
  • Like
  • 0
Receiving this error when editing a visualforce page in sandbox through developer console or third party IDE.  This page has been working in production for some time. Both page and controller are set to version 32 in sandbox and production. 
The page can be edited directly through Develop->Pages.

Here's a very simplified version of the page which produces the error
 
<apex:page standardController="User" extensions="SalesRepGoalController2"> 

<b>Hello World!</b>
</apex:page>
and controller
 
public with sharing class SalesRepGoalController2{
private String userID = '' ; 	
public SalesRepGoalController2(ApexPages.StandardController c)
	{
		userID = c.getId(); 
	}
}

Java 1.7 was installed, but has been uninstalled.

Windows 8 Enterprise,  64bit
IE 10
JRE none

 
  • July 20, 2015
  • Like
  • 1
If Lightning is enabled for the org but user is viewing in classic mode, custom visualforce pages aren't showing header or sidebar. (Winter 16)
 
<apex:page doctype="html-5.0" showHeader="true" showChat="false"  controller="customController"  >
Is anyone else having this issue?
 
  • September 23, 2015
  • Like
  • 0
Receiving this error when editing a visualforce page in sandbox through developer console or third party IDE.  This page has been working in production for some time. Both page and controller are set to version 32 in sandbox and production. 
The page can be edited directly through Develop->Pages.

Here's a very simplified version of the page which produces the error
 
<apex:page standardController="User" extensions="SalesRepGoalController2"> 

<b>Hello World!</b>
</apex:page>
and controller
 
public with sharing class SalesRepGoalController2{
private String userID = '' ; 	
public SalesRepGoalController2(ApexPages.StandardController c)
	{
		userID = c.getId(); 
	}
}

Java 1.7 was installed, but has been uninstalled.

Windows 8 Enterprise,  64bit
IE 10
JRE none

 
  • July 20, 2015
  • Like
  • 1
Hi there

Have a very simple sample here
 
<apex:page standardController="Contact">
    <apex:form >
        <apex:pageMessages/>
        <apex:pageBlock mode="inlineEdit">
            <apex:pageBlockButtons >
                <apex:commandButton action="{!edit}" id="editButton" value="Edit" style="display: none;"/>
                <apex:commandButton action="{!save}" id="saveButton" value="Save" style="display: none;"/>
                <apex:commandButton onclick="resetInlineEdit()" id="cancelButton" value="Cancel" style="display: none;"/>
            </apex:pageBlockButtons>
            <apex:pageBlockSection >
                <apex:outputField value="{!contact.date__c}">
                    <apex:inlineEditSupport showOnEdit="saveButton, cancelButton" 
                        hideOnEdit="editButton" event="ondblclick" 
                        changedStyleClass="myBoldClass" resetFunction="resetInlineEdit"/>
                </apex:outputField>
            </apex:pageBlockSection>
        </apex:pageBlock>
    </apex:form>
</apex:page>


As you can see there is a Date field which supports inline edit.

When you double click the field, the Save and Cancel buttons show.  Now if I enter some bad data into the Date field, such as "abc", and click Save, it'll fail the validation rule.

It's obvious because the error displays in the <apex:pageMessages/> tag, but I cannot find a way to show the "Save" and "Cancel" buttons anymore.

Anyone knows what I'm missing here?
Thanks
King
We have SSO enabled, which was working for Salesforce licenses and a custom license for BMC Remedyforce (force native app).  Our Active Directory Federation server certificate expired.  After replacing, SSO works for users with a full Salesforce license, but not for users with the Remedyforce custom license.  BMC considers this a Salesforce issue, and I haven't found any settings for their app related to SSO.
Any suggestions?
  • February 05, 2014
  • Like
  • 0