• Ambily
  • NEWBIE
  • 0 Points
  • Member since 2009

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 2
    Replies

Hi,

I have to export data from the .csv file( in a shared folder) to the corresponding fields in my Salesforce account using Apex code.

Kindly advice me how to achieve this...
Also share if some sample codes are available.


Thanks in Advance
Ambily

  • April 21, 2010
  • Like
  • 0

Hi,

 

I have to print the current page using the printer connected to my system.
I would like to open the 'Print Option' using Apex code.
Is this possible?
Please help...


Thanks
Ambily

  • February 23, 2010
  • Like
  • 0

Hi,

 

According to the below code, I am getting  "Tab1" and "Tab2" on the top of the page.

Is there any way for changing the 'TabLabel' position from top to bottom(like what we could do for pageBlockButtons  - <apex:pageBlockButtons location="bottom" >  )?

 

<apex:page standardController="Account" showHeader="true"
tabStyle="account" >
<style>
.activeTab {background-color: #236FBD; color:white;
background-image:none}
.inactiveTab { background-color: lightgrey; color:black;
background-image:none}
</style>
<apex:tabPanel switchType="client" selectedTab="tabdetails" id="AccountTabPanel" tabClass="activeTab"
inactiveTabClass="inactiveTab" >
<apex:tab label="Tab1" name="Tab1" id="first" >
Test Tab
</apex:tab>
<apex:tab label="Tab 2" name="Tab 2" id="second">
Test Tab
</apex:tab>
</apex:tabPanel>
</apex:page>

 

 

Thanks

Ambily

  • December 09, 2009
  • Like
  • 0

Hello, I'm using cordova version 2.9 and forcetk.js.

 

After outh screen i want to redirect to the index.html file of my phonegap app.

I tried using file:/// link but no use.

 

can any one help me in this. How to configure the callback url in local hybrid app.

 

Thanks in advance!!

I have one task that is assigned to me i.e, Convert JSON data (JSON representation of an image) that is stored in Salesforce.com to an actual image and store it as an attachment to the same record.

 

I have the java code for this, but is there any way of doing this with salesforce.com directly, if yes, can anyone help me, giving some direction as what needs to done.
 
Data is being transmitted in JSON is not via base64
 
Example of the JSON data that is being stored in Salesforce.com 
 
[{"lx":12,"ly":15,"mx":12,"my":14},{"lx":13,"ly":14,"mx":12,"my":15},{"lx":14,"ly":14,"mx":13,"my":14},{"lx":14,"ly":15,"mx":14,"my":14},{"lx":15,"ly":15,"mx":14,"my":15},{"lx":16,"ly":15,"mx":15,"my":15},{"lx":17,"ly":15,"mx":16,"my":15},{"lx":18,"ly":16,"mx":17,"my":15},{"lx":19,"ly":17,"mx":18,"my":16},{"lx":20,"ly":17,"mx":19,"my":17},{"lx":21,"ly":17,"mx":20,"my":17},{"lx":22,"ly":18,"mx":21,"my":17},{"lx":23,"ly":18,"mx":22,"my":18},{"lx":24,"ly":18,"mx":23,"my":18},{"lx":25,"ly":18,"mx":24,"my":18},{"lx":26,"ly":18,"mx":25,"my":18},{"lx":26,"ly":19,"mx":26,"my":18},{"lx":27,"ly":20,"mx":26,"my":19},{"lx":28,"ly":20,"mx":27,"my":20},{"lx":29,"ly":20,"mx":28,"my":20},{"lx":30,"ly":20,"mx":29,"my":20},{"lx":30,"ly":21,"mx":30,"my":20},{"lx":31,"ly":21,"mx":30,"my":21},{"lx":32,"ly":21,"mx":31,"my":21}]
 
 
 
 
  • September 11, 2012
  • Like
  • 0