• Ummi
  • NEWBIE
  • 0 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 6
    Questions
  • 8
    Replies
In my Visualforce Page I need to display List of programs in a redio button with remaining fields.

Ex:   PROGRAM NAME                START DATE                 END DATE
  • Java                                    2/1/2017                        5/6/2017
  • C                                        5/2/2017                         7/7/2017
  • SALESFORCE                   8/3/2017                        11/11/2017I
I want to select only one program at a time  then I have button "save&next" .if i click that one i need to redirect to another page.
  • October 03, 2017
  • Like
  • 0
Requirement:
Friends i am stuck in one requirement
I have an opportunity in that atomaticaly one check box field will updated through work flow.
when check box is true i want to display Ppoup? message
  • January 20, 2017
  • Like
  • 0
Hi friends i am stuck in visualforce page button.
Requirements:
I need to create a task using popup
for example:I am in visual force page if I click on Create task button i need to display one popup in that i need to create  one task then save .
  • January 19, 2017
  • Like
  • 0
<div class="new_row">
                            <div class="col-md-4" >
                                <apex:outputLabel for="mobilePhone" value="{!$ObjectType.Contact.fields.MobilePhone.Label}" />
                            </div>
                            <div class="col-md-8" >
                                <apex:inputField styleClass="textfield" value="{!contact.MobilePhone}" id="mobilePhone"  onkeypress='return event.charCode >= 48 && event.charCode <= 57' />
                            </div>
                        </div>
Friends I need to do This field as a Mandatory when mobile is Blank?
I nned to display the message under Field In redmark
  • November 22, 2016
  • Like
  • 0
Guys i am stuck in javascript List button 
I have one list view Ex: this Month opportunity
in this list view 30 records are thr,i am selecting 5 records then i am clicking one list view Button in pop up i want to display Total amount from 5 records(ex: opp1=500,opp2=500,opp3=1500,opp4=100,opp5=1000) in pop up I need to display total amount is 3600
  • November 16, 2016
  • Like
  • 0
Friends I am stuck in Displaying Progress bar in visual force page.
Description:
Ex : I have one formiula field Progress__C
In visual force page i have 4 tabs
if i fill 1st tab (Pogress_c is =25) i want to display 25% Color In VF
if i Fill 2nd tab(Progress is =50) i want to display 50 %color in VF

How to do this one Guys.
  • November 15, 2016
  • Like
  • 0
In my Visualforce Page I need to display List of programs in a redio button with remaining fields.

Ex:   PROGRAM NAME                START DATE                 END DATE
  • Java                                    2/1/2017                        5/6/2017
  • C                                        5/2/2017                         7/7/2017
  • SALESFORCE                   8/3/2017                        11/11/2017I
I want to select only one program at a time  then I have button "save&next" .if i click that one i need to redirect to another page.
  • October 03, 2017
  • Like
  • 0
Friends I am stuck in Displaying Progress bar in visual force page.
Description:
Ex : I have one formiula field Progress__C
In visual force page i have 4 tabs
if i fill 1st tab (Pogress_c is =25) i want to display 25% Color In VF
if i Fill 2nd tab(Progress is =50) i want to display 50 %color in VF

How to do this one Guys.
  • November 15, 2016
  • Like
  • 0

<apex:page showheader="false" doctype="html-5.0">
<script src="https://ap1.salesforce.com/soap/ajax/28.0/connection.js"></script>
<script src="https://ap1.salesforce.com/soap/ajax/28.0/apex.js"></script>
<apex:includeScript value="/support/console/34.0/integration.js"/>

  
<script type="text/javascript">
      
    
    function Stopfunc(){
        logic.....
    }
    
    function Startfunc(){

    }
    
    function test(){
        alert('hiii');
    }
    $(document).ready(function(){
        test();
    });   
    
</script>

 
<button onclick="Stopfunc();" id="stop_id"> Stop  </button>
<button onclick="Startfunc();" id="start_id"> Resume start </button>
</apex:page>

 

I want to call Stopfunc() and Startfunc() functions from javascript buttons.

Hi All,
I've only just started using salesforce and then only in a limited capacity, so excuse my ingorance if any question seems obvious or is covered in another forum.
My calendar is showing last years date as today. for example it shows today tuesday the 12th of may as monday the 12th of may. support seems to suggest it is a visualforce problem and to contact whoever set up the page which i have but we are completly stumped as to what caused this problem. The other PC's on the system where, as far as we are aware, set the same way and are all showing the correct day. any help ideas would be appreciated.

User-added image
   

Hi

 

I have an urgent requirement to implement calender in  vf page. When user clicks on a particular date, it should list out all the events hosted on that day. Pretty much the standard functionality.

 

I could'nt find any way to do this.

I would really appreciate if someone could post me the logic to achieve this functionality.

 

Thanks in advance

  • September 12, 2010
  • Like
  • 0