• Christwin Durai
  • NEWBIE
  • 0 Points
  • Member since 2014

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

We are developing an Hybrid app using angularjs.
Using the cordova plugin we access camera using the functions
navigator.camera.getPicture(sucess.error);
navigator.device.capture.captureVideo(success,error);

Could someone please guide as how to store the photos as videos taken as attachments to a record.

Thank you very much for your support.

Regards,
Christwin
Hi,

I have a Custom lookup page that is called in a VF page. I tried using the following code but only the standard lookup opens in the mobile. But in the Browser I am getting the correct Custom Look up page.I have also enabled mobile access to the Page
<apex:form >
        <div>
            <apex:inputField value="{!Event.Event_Id__c}"/>
        </div>
    </apex:form>

Kindly Guide me.

Thanks and Regards,
Christwin
 
Hi All,

I have used the below code to open a new Record which works in Apple Phones but not in Android Phones.Could some one please guide me how to get it done.
In Android phones it shows a message like Logged out of session Successfully.
<a href="{!URLFOR($Action.CustomObjectAPI.New)}">Register</a>


I also used the blow code but it shows an error like "Cannot read property 'createRecord' of undefined". Kindly also Advice in this
function createNew() {
try{
      sforce.one.createRecord("CustomObject",null);
      }
      catch(e){alert(e);}
}

Thanks and Regards,
Christwin
Hi All,

I need to render a Standard Object on a button Click from a VF page in Salesforce1.
<a href="{!URLFOR($Action.Object__c.New, null,null,true)}">Button Title</a>
but it renders the Web Application Object Page not the Mobile Object Page

Web Application Object URL is Rendered-
https://ap1.salesforce.com/a00/e

I Need To get the Mobile URL Rendered.

Could some one please guide me in this.

Thanks and Regards,
Christwin