• Rajat Mahajan 21
  • NEWBIE
  • 40 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 13
    Questions
  • 3
    Replies
Hi All

One of our VF pages length is long and the messages get shown at the top of the page.
However, when messages are shown , the user needs to navigate to top to check error.

Are there any workarounds to send the user to the top of the page on any click ?

Many thanks in advance,
Rajat
Hi

Can someone please help me with this issue.
I am redirecting from one VF page to another. By doing so, the tab auto changes from the current one to Home Page tab.
Is there a way to stop this behaviour?

Thanks in Advance

Regards
Rajat
Hi All

Can someone please help me with this issue.
I am redirecting from one VF page to another. By doing so, the tab auto changes from the current one to Home Page tab.
Is there a way to stop this behaviour?

Thanks in Advance

Regards
Rajat
Hi All

Can someone please help me with this issue.
I am redirecting from one VF page to another. By doing so, the tab auto changes from the current one to Home Page tab.
Is there a way to stop this behaviour?

Thanks in Advance

Regards
Rajat
We have a custom button for which created a publisher action for Salesforce1

This functions to show us the page in edit mode, however we pass the recordtypeid in the URL (as we need a custom edit view)
The page is working on browser - but opens the normal edit mode for Opportunity when in Salesforce 1(without changing page layout based on recordtypeid)

Can you please inform me if this is a known issue ? Work Arounds ?

Sample Code :
PageReference detailPage = new PageReference('/'+idOpp+'/e');
detailPage.getParameters().put('RecordType', idRecordtype);
detailPage.getParameters().put('retURL', idOpp);
detailPage.getParameters().put('opp11', strStage);
detailPage.getParameters().put(System.label.Opportunity_Sub_Stage, strSubStage);
detailPage.getParameters().put('nooverride', '1');
detailPage.getParameters().put('opp12', String.valueOf(dbProbability));
detailPage.setRedirect(true);
return detailPage;

Regards
Rajat
We have a custom button for which created a publisher action for Salesforce1

This functions to show us the page in edit mode, however we pass the recordtypeid in the URL (as we need a custom edit view)
The page is working on browser - but opens the normal edit mode for Opportunity when in Salesforce 1(without changing page layout based on recordtypeid)

Can you please inform me if this is a known issue ? Work Arounds ?

Sample Code :
PageReference detailPage = new PageReference('/'+idOpp+'/e');
detailPage.getParameters().put('RecordType', idRecordtype);
detailPage.getParameters().put('retURL', idOpp);
detailPage.getParameters().put('opp11', strStage);
detailPage.getParameters().put(System.label.Opportunity_Sub_Stage, strSubStage);
detailPage.getParameters().put('nooverride', '1');
detailPage.getParameters().put('opp12', String.valueOf(dbProbability));
detailPage.setRedirect(true);
return detailPage;

Regards
Rajat
We have a custom button for which created a publisher action for Salesforce1

This functions to show us the page in edit mode, however we pass the recordtypeid in the URL (as we need a custom edit view)
The page is working on browser - but opens the normal edit mode for Opportunity (without changing page layout based on recordtypeid)

Can you please inform me if this is a known issue ? Work Arounds ?

Sample Code :
PageReference detailPage = new PageReference('/'+idOpp+'/e');
detailPage.getParameters().put('RecordType', idRecordtype);
detailPage.getParameters().put('retURL', idOpp);
detailPage.getParameters().put('opp11', strStage);
detailPage.getParameters().put(System.label.Opportunity_Sub_Stage, strSubStage);
detailPage.getParameters().put('nooverride', '1');
detailPage.getParameters().put('opp12', String.valueOf(dbProbability));
detailPage.setRedirect(true);
return detailPage;

Regards
Rajat Mahajan
We have a custom button for which created a publisher action for Salesforce1

This functions to show us the page in edit mode, however we pass the recordtypeid in the URL (as we need a custom edit view)
The page is working on browser - but opens the normal edit mode for Opportunity (without changing page layout based on recordtypeid)

Can you please inform me if this is a known issue ? Work Arounds ?

Sample Code :
PageReference detailPage = new PageReference('/'+idOpp+'/e');
detailPage.getParameters().put('RecordType', idRecordtype);
detailPage.getParameters().put('retURL', idOpp);
detailPage.getParameters().put('opp11', strStage);
detailPage.getParameters().put(System.label.Opportunity_Sub_Stage, strSubStage);
detailPage.getParameters().put('nooverride', '1');
detailPage.getParameters().put('opp12', String.valueOf(dbProbability));
detailPage.setRedirect(true);
return detailPage;

Regards
Rajat Mahajan
Hi All

I am having a custom file upload functionality in an inline VF page.
However when i use this inline page on SF1 - I click on upload and the same VF opens its self again in a new window (not in inline form)
Then it allows me to upload files from my device

Could you please help me with this issue?

Thanks in advance!
Hi All

I am having a custom file upload functionality in an inline VF page.
However when i use this inline page on SF1 - I click on upload and the same VF opens its self again in a new window (not in inline form)
Then it allows me to upload files from my device

Could you please help me with this issue?

Thanks in advance!
Hi All

Maybe this problem is being faced only by me

I have a visualforce page opening on a publisher action in Salesforce1
This page is being used both in Desktop and SF1 (IPAD/Android)

The page is having a lookup to contact object --> When clicked it navigates to lookup window, but then on searching records, it does not allow me to select any record

I just keep tapping on the record and it does not take me to the previous screen

Can anyone please help me on this ?

Many thanks in advance!
Hi All

Maybe this problem is being faced only by me

I have a visualforce page opening on a publisher action in Salesforce1
This page is being used both in Desktop and SF1 (IPAD/Android)

The page is having a lookup to contact object --> When clicked it navigates to lookup window, but then on searching records, it does not allow me to select any record

I just keep tapping on the record and it does not take me to the previous screen

Can anyone please help me on this ?

Many thanks in advance!
Hi All

I have deloped a site in Salesforce which is having certain visual force pages.

Issue is that in navigation a person should not be allowed to navigate back.
But i see that if i click the browser back button - the session is retained. Ideally the user should just log out or an error page should be shown

Can this be handled ?

Could you please help me as this is an urgent requirement

Thanks a lot in advance!
Hi

Can someone please help me with this issue.
I am redirecting from one VF page to another. By doing so, the tab auto changes from the current one to Home Page tab.
Is there a way to stop this behaviour?

Thanks in Advance

Regards
Rajat
We have a custom button for which created a publisher action for Salesforce1

This functions to show us the page in edit mode, however we pass the recordtypeid in the URL (as we need a custom edit view)
The page is working on browser - but opens the normal edit mode for Opportunity when in Salesforce 1(without changing page layout based on recordtypeid)

Can you please inform me if this is a known issue ? Work Arounds ?

Sample Code :
PageReference detailPage = new PageReference('/'+idOpp+'/e');
detailPage.getParameters().put('RecordType', idRecordtype);
detailPage.getParameters().put('retURL', idOpp);
detailPage.getParameters().put('opp11', strStage);
detailPage.getParameters().put(System.label.Opportunity_Sub_Stage, strSubStage);
detailPage.getParameters().put('nooverride', '1');
detailPage.getParameters().put('opp12', String.valueOf(dbProbability));
detailPage.setRedirect(true);
return detailPage;

Regards
Rajat
Hi All

I have deloped a site in Salesforce which is having certain visual force pages.

Issue is that in navigation a person should not be allowed to navigate back.
But i see that if i click the browser back button - the session is retained. Ideally the user should just log out or an error page should be shown

Can this be handled ?

Could you please help me as this is an urgent requirement

Thanks a lot in advance!