• viren
  • NEWBIE
  • 0 Points
  • Member since 2013

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

Hi,

 

How can we apply the click event on page?

Example : Once I pressed click on page then background color of page should be change.

  • July 31, 2013
  • Like
  • 0

 Hi,

 

How to add custom controller extension with custom controller in VF page?

Example:
<apex:page controller="CustCtrl" extension="CustExt">

 

Is it possible (shown above)?

  • July 26, 2013
  • Like
  • 0

Hello,

 

1) How many max number of controllers can refer in VisualForce page?

If N number of controller is possible then how we can implement it?

 

2) Drag and Drop controls (textbox, radio etc.) features is available for creating VisualForce Page?

Is there any IDE which can provide this feature?

 

3) How to use/include VisualForce page in custom object's tab?

 

Thanks & Regards,

Viren.

  • July 25, 2013
  • Like
  • 0

 

Hi,

 

I have started to learn how to develop App in Force.com platform and created developer edition account. Force.com IDE as plugin is installed on eclipse 3.6 IDE.

 


New project is created and added simple VisualForce pages on Eclipse IDE. VisualForce pages are available in webserver [setup-->Develop-->Pages] (SalesForce DE Account site).

 

But how can I put/deploy my project on webserver (DE account) as Application?

 

How is custom app created on SalesForce avail on Eclipse IDE?

 

 

 

I am new in this area so Please help me for above.

 

If required more detail please let me know.

 

 

 

Thanks & Regards,

 

Viren.

 

  • July 18, 2013
  • Like
  • 0

I am trying to change the background color of a visual force page. The code I have is not working.  Please help! How do I fix this?

 

<apex:page standardcontroller="Feature_Request_Form__c" >
<style>
body
{
   background-color: blue; }
   </style>
<apex:form >
<div>To complete the request, click on <b>Submit for Approval</b> button located on the <b>Approval History</b> section of this page.</div>
</apex:form>
</apex:page>
                       

 Hi,

 

How to add custom controller extension with custom controller in VF page?

Example:
<apex:page controller="CustCtrl" extension="CustExt">

 

Is it possible (shown above)?

  • July 26, 2013
  • Like
  • 0
Hi I want to set background to visual force page(or form).
<apex:page bgcolor="blue">
 
<apex:form bgcolor="blue">
 
are not working even the attributes background ia not working.
 
Can anyone give me a way how to do it.
 
Thanks in advance