• Anunimmala
  • NEWBIE
  • 0 Points
  • Member since 2010

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 5
    Questions
  • 3
    Replies
Hi Everyone,

I have implemented a visualforce page with  complete customizations like hrml css javascript and jquery in Vf pages,Now I would like to make the  page responsive, So I have applied Lightning design css to tables to make it responsive. This responsive behaviour is working in Salesforce1 Simulator and  also in Salesforce 1 app of all the mobiles. But its not working in Iphone,IPad and also in the Lightning view of Browser . Any Ideas would be helpful. I have used the example  as listed in below url for making the  table responsive.
https://www.lightningdesignsystem.com/components/data-tables/#responsive

HI everyone ,

 

  Can SomeOne help me on rendering a rich text area field as PDF.

Hi Everyone,

 

 I have a question with Visualforce EmailTemplate creation.I have created a Visualforce EmailTemplate which sends a csv file as an attachment to user.So For passing a customlist to Csv file i used a component which uses a controller to call a custom list and iam using apex:repeat to display the list in the component .Finally am caaling this component in my visualforce email template </messaging:attachment> tag .So my file is attached as csv but csv file not looking good .It has a break line after each record in csv.How can i eliminate this.

 

My code for componet and visualforce emailtemplate. as follows.

 

<apex:component controller="ControllerVisualforceEmailTemplate" access="global" >
Order Item Name,OrderNumber
<apex:repeat var="orderItem" value="{!listOrderItems}" >

{!orderItem.Name},{!orderItem.Case__r.CaseNumber}
</apex:repeat>

</apex:component>



<messaging:emailTemplate recipientType="Contact"
relatedToType="Account"
subject="Your account's cases"
replyTo="nimmala.anukarthi@gmail.com"  >
<messaging:htmlEmailBody >

<c:componentVisualforceEmailTemplate />

</messaging:htmlEmailBody>
<messaging:attachment renderas="pdf" filename="cases.pdf">


<c:componentVisualforceEmailTemplate />

</messaging:attachment>
<messaging:attachment filename="cases.csv"  >

<c:componentVisualforceEmailTemplate />
</messaging:attachment>
</messaging:emailTemplate>

Hi Everyone,

 

 

I want to embed a yahoo widget in my visualforce page .So please tell me  is it possible to  embed a yahoo widget in visualforce page .If so Please guide me how to embed a yahoo widget in visualforce page.

Hi everyone,

 

IAm very much interested in doing salesforce certification of Force.com Developer Certification,but facing much difficulty in getting dump for the force .com developer cwertification for preparation of isomeone provide me with dump material for salesforce developer certification it will be very helpful for me to prepare for the exam..

 

 

So someone help me

 

                                                                                                                                                     Thanks and regards,

                                                                                                                                                                 Anu...

Hi Everyone,

 

I need to create a datepicker in visualforce page using javascript function .But when iam trying to create a datepicker using javascript function its not working.If someone has done it, please help meout from the issue by providing me with the code .

 

                                                                                                                                                                                    Thanks and regards,

                                                                                                                                                                                              Anu....

Hi everyone,

 

IAm very much interested in doing salesforce certification of Force.com Developer Certification,but facing much difficulty in getting dump for the force .com developer cwertification for preparation of isomeone provide me with dump material for salesforce developer certification it will be very helpful for me to prepare for the exam..

 

 

So someone help me

 

                                                                                                                                                     Thanks and regards,

                                                                                                                                                                 Anu...

Hi All,

I want a input text in my visualforce page. On clicking this inputbox the standard salesforce calendar should popup. Is this possible.

Please note that i need only a input text and not a input field.

I got the below code from the forums.

What are the values that i have to pass in the highlighted part of the code. Is this possible in Visualforce.

Code:
<a href="javascript&colon;openPopupFocus

('/home/calendar.jsp—form=form1&field=sdate&mo=0&callonchange=true', '_blank', 186, 170, 'width=186,height=170,resizable=yes,toolbar=no,status=no,scrollbars=no,menubar=no,directories=no,location=no,dependant=yes', true, true);"

class="datePicker"

title="Pick A Date (New Window)"

onclick="setLastMousePosition(event)"

id="sdatePopCal">

<img src="/s.gif" alt="Pick A Date (New Window)" class="datePickerIcon">

</a>

 Thanks,
Edwin