• Sourabh Tayal 14
  • NEWBIE
  • 0 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 7
    Questions
  • 7
    Replies
Hi,

I have to display/show images in <img src="" /> tag dynamically on vf page(using renderas="pdf") using FTP urls but it is not displaying image.
Once i remove renderas="pdf" attribute then it is showing image on vf page.

Any idea how can i display image on pdf file by using FTP server url dynamically?
Please help me regarding this.
 

I create a custom vf-page and have some picklist fields on it and using this page in SF1.

So whenever i select a value from picklist field a pop-up comes up in sf1 in iphone5, after select value from that pop-up my custom page gets refresh and it takes control to top of page while this page is working good in normal salesforce.

Is there any idea or solution fo this issue.

User-added image 
I need to run java script code in SF1 on all object record's loading.

How can i implement this functionality/option in SF1. Please help me regarding this.
I have setup paypal to salesforce integration. I am getting authentication success token also.

I have created many payments in mmy paypal sandbox account, but i am not able to fetch payments records from paypal to  in salesforce using apex integration code.

Any idea why? please help me.
To detect/catch that a visualforce page is running on Salesforce1 or on web browser i have used this code:
<script>
if( (typeof sforce != 'undefined') && (sforce != null) ) {
     alert('your are in SF1');
}
else {
     alert('your are in Salesforce/browser');
}
</script>

It is working, but when i use this same code like:
<script language="JavaScript1.2" src="/js/functions.js"></script>
<script src="/soap/ajax/9.0/connection.js" type="text/javascript"></script>
<script id="clientEventHandlersJS" language="javascript">
     if( (typeof sforce != 'undefined') && (sforce != null) ) { 
          alert('your are in SF1');
     } 
     else { 
          alert('your are in Salesforce/browser');
     }
</script>


it is not working. I am using these other script tags to update records using Sforce methods.
Any one can let me know how to resolve this issue? 
 
Hi, for this i have used "Boogie Fever"(https://developer.salesforce.com/blogs/developer-relations/2013/12/salesforce1-cures-the-app-boogie-fever.html) SF1 app, working fine for option of pick image from gallery(not so large size), but when i use it to take picture form camera and save it, it takes so many time and shows error also(because of image size approx 1 MB or greater). Guys please help me regarding it, how can i solve this issue.
I want to create a Time-dependent workflow rule on Account object and this workflow should fire/run after 15 minutes of record's creation.

I try for this but when we used to give time for workflow trigger it does not give/support option to enter minutes, please help me how can i achive it?

Note: For this i do not want to use batch class.

Any idea, if any one have share it.

User-added image

I create a custom vf-page and have some picklist fields on it and using this page in SF1.

So whenever i select a value from picklist field a pop-up comes up in sf1 in iphone5, after select value from that pop-up my custom page gets refresh and it takes control to top of page while this page is working good in normal salesforce.

Is there any idea or solution fo this issue.

User-added image 
I need to run java script code in SF1 on all object record's loading.

How can i implement this functionality/option in SF1. Please help me regarding this.
I have setup paypal to salesforce integration. I am getting authentication success token also.

I have created many payments in mmy paypal sandbox account, but i am not able to fetch payments records from paypal to  in salesforce using apex integration code.

Any idea why? please help me.
To detect/catch that a visualforce page is running on Salesforce1 or on web browser i have used this code:
<script>
if( (typeof sforce != 'undefined') && (sforce != null) ) {
     alert('your are in SF1');
}
else {
     alert('your are in Salesforce/browser');
}
</script>

It is working, but when i use this same code like:
<script language="JavaScript1.2" src="/js/functions.js"></script>
<script src="/soap/ajax/9.0/connection.js" type="text/javascript"></script>
<script id="clientEventHandlersJS" language="javascript">
     if( (typeof sforce != 'undefined') && (sforce != null) ) { 
          alert('your are in SF1');
     } 
     else { 
          alert('your are in Salesforce/browser');
     }
</script>


it is not working. I am using these other script tags to update records using Sforce methods.
Any one can let me know how to resolve this issue? 
 
I want to create a Time-dependent workflow rule on Account object and this workflow should fire/run after 15 minutes of record's creation.

I try for this but when we used to give time for workflow trigger it does not give/support option to enter minutes, please help me how can i achive it?

Note: For this i do not want to use batch class.

Any idea, if any one have share it.

User-added image