• Kawaiimomo
  • NEWBIE
  • 10 Points
  • Member since 2012

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 4
    Questions
  • 6
    Replies
Hi there,

I was about to try the VisualForce Mobile Components and found out the github repo doesn't exist anymore.

What alternatives do we have?

I am trying to make a page where the user can select start and end date, then I use those dates for getting a custom object transaction__c which Open_Date__c field is between them.

This is how I create the DatePicker:

 

<input value="{!startDate}" id="start" onfocus="DatePicker.pickDate(false,'start', false);" size="12" type="text" />

 

Then in the controller I have:

 

private Date startDate {get; set;}

 

and in the constructor

    cam = [SELECT Id, Name, StartDate, EndDate FROM Campaign WHERE Id = :controller.getRecord().Id] ;

    startDate = cam.StartDate;

 

    if (startDate == null) {

        startDate = Date.today();

    }

 

The getter is called because the date is set properly on the picker. However the setter is not being called, ie the picked date is not saved on my variable. I even created a setter and getter and can clearly see the getter is called, but not the setter.

 

So, is there anything else I need to do to save the picked date?

Hello there,

 

We are designing a project in which we plan to use 20 SFDC users and more than 100 database.com light users. The idea is that the SDFC users will use the site to see reports and so on, while the others will user our mobile software which relies on API calls to create orders and similar.

I never used database.com before and I am quite a newbie with salesforce.com. I just created a db.com account but I have no idea on how I can connect the two systems together. I want the both types of users to access to the same records, so if a salesman creates an order the manager can see this order in the reports and the online tools. How can achieve that? I there any limitation I should be aware of?

 

Thanks!

Hello there,

 

We are designing a project in which we plan to use 20 SFDC users and more than 100 database.com light users. The idea is that the SDFC users will use the site to see reports and so on, while the others will user our mobile software which relies on API calls to create orders and similar.

I never used database.com before and I am quite a newbie with force.com. I just created a db.com account but I have no idea on how I can connect the two systems together. I want the both types of users to access to the same records, so if a salesman creates an order the manager can see this order in the reports and the online tools. How can achieve that? I there any limitation I should be aware of?

 

Thanks!

Hi there,

I was about to try the VisualForce Mobile Components and found out the github repo doesn't exist anymore.

What alternatives do we have?

I tried installing the Mobile Components into my dev org, but I always get success: false

 

If I try to access the sample app, I get: Page MobilePage does not exist

 

Anyone experience this?

I am trying to make a page where the user can select start and end date, then I use those dates for getting a custom object transaction__c which Open_Date__c field is between them.

This is how I create the DatePicker:

 

<input value="{!startDate}" id="start" onfocus="DatePicker.pickDate(false,'start', false);" size="12" type="text" />

 

Then in the controller I have:

 

private Date startDate {get; set;}

 

and in the constructor

    cam = [SELECT Id, Name, StartDate, EndDate FROM Campaign WHERE Id = :controller.getRecord().Id] ;

    startDate = cam.StartDate;

 

    if (startDate == null) {

        startDate = Date.today();

    }

 

The getter is called because the date is set properly on the picker. However the setter is not being called, ie the picked date is not saved on my variable. I even created a setter and getter and can clearly see the getter is called, but not the setter.

 

So, is there anything else I need to do to save the picked date?

I do not see any library available for the integration of force.com and J2ME applications. I am looking for library similar to "Android-Force.com". If library is not available then what is alternative for J2ME? Generally J2ME phones are very low end phones so using browser is not recommended hence looking for intergation piece in J2ME app and force.com