• Jaydip
  • NEWBIE
  • 0 Points
  • Member since 2009

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 9
    Questions
  • 5
    Replies

I cloned from below git hub.

 

https://github.com/forcedotcom/SalesforceMobileSDK-Android.git.

 

Created a project in eclipse (after installing Android SDK and ADT plugin).  Now, when I import project (VFConnector) from MobileSDK, I am getting error as "Unable to resolve target 'android-8'. Why this could be?

 

Thanks

Jaydip

Hi,

 

  I have to custom obj (1) Project (2) Budget with lookup relationship (1 Proj can have multiple budgets)

 

  One VF page with stdcontroller budget__c and extension accepting value for month and budget value.

 

  Command Button {!addMore}.

 

   Here i wrote a class method 

 

 

public PageReference addMore() {
     
    database.Insert(budget1);
// Would like to Rollup sum of all budgetvalue related to the project but test1__c never get updated.
    if(budget1.Value__c!=Null && budget1.PMO_Project__r.test1__C!=Null)
               budget1.PMO_Project__r.test1__c=budget1.PMO_Project__r.test1__c + budget1.Value__c;
    
    ApexPages.StandardController budgetController = new ApexPages.StandardController(budget1);
    return budgetController.save();
    //return page.budgetDetail;
}
I need accumulated budget value at Project level.
Appreciate your help.
Thanks,
Dhairya

 

Hello,

 

I am calling a java script from VF page and passing field ID value to java script as parameter.  Now, when I do a 

document.getElementById(theId).value for a multi-pick list, the java script only getting the first value selected. My thought was, it should get semi colon delimited string with all values. So, how could we get all other selected values in java script?

 

Thanks for any help.

 

 

Hi,

 

Is  there any way, I could call a S-Control from a Visual Force page?

 

Thanks

 

I was wondering, which API call I could use from my asp.net/C# application, that will return all Standard and Custom object names that are part of my organization. I want to display all available objects in  drop down list in a asp.net page.

 

Thanks