• 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

  • September 27, 2012
  • Like
  • 0

Hi,

As we know, there could be 2,000,000 characters limitation for total Apex code for an organization. Now, does that number including System.Debug statements as well?  Or this excludes System.Debug statements like comments and @istest ones?

 

Thanks

 

 

 

  • March 08, 2011
  • Like
  • 0

Hi,

When I embed a visualforce page to a standard page layout, this visualforce page is only visible in view mode. How could I see the visualforce content in edit mode as well, when it is embedded to a standard page layout?

 

Thanks

 

  • February 23, 2011
  • Like
  • 0

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.

 

 

  • January 10, 2011
  • Like
  • 0

Hi,

 

Is there any object in SFDC, where object access permission related information for each profile is stored? For example, if I want to query which profiles have write access to Account object, where can I get this information stored?

 

 

Thanks

 

Hi,

 

I am trying to invoked a method from a radio button in PageBlockTable. Looks like with SelectRadio, there is no action attribute. So,how should I call?

 

 

Thanks

Jaydip

  • February 05, 2010
  • Like
  • 0

Hi,

 

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

 

Thanks

 

  • January 28, 2010
  • Like
  • 0

Hi,

 

I am trying to override a standard object's New button with a Visual Force page.After I did that,

when I click New button, at first, Record Type selection page comes, then my newly built Visual Force page appears.

 

My question, is there any way, we could show visual force page before selecting record type? I could then redirect

to display record type selection page.

 

Thanks for your help.

 

regards

Jaydip

  • January 26, 2010
  • Like
  • 0

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

  • December 14, 2009
  • Like
  • 0

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

  • September 27, 2012
  • Like
  • 0

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.

 

 

  • January 10, 2011
  • Like
  • 0

Hi,

 

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

 

Thanks

 

  • January 28, 2010
  • Like
  • 0

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

  • December 14, 2009
  • Like
  • 0