function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
UmmiUmmi 

Displayin Visual force Progress bar ?

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.
karthikeyan perumalkarthikeyan perumal
Hello,

Use this below URL you may get some Idea about  how to do this. 

http://www.jitendrazaa.com/blog/salesforce/creating-progress-bar-field-using-formula-without-any-coding/

http://sudipta-deb.blogspot.in/2015/01/display-progress-bar-using-formula.html

hope this will help you, 


Mark Best ANSWER if its works for you. 

Thanks
karthik
UmmiUmmi
Hi karthik I want to display in visual force. Progress bar with percentage.
karthikeyan perumalkarthikeyan perumal
Hello, 

Add this tage in you VF page, 

<apex:outputField value="Obj.Progress__C" id="progress" />

if its standard controller access the field with object name.field name like below

<apex:outputField value="ObjectName.Progress__C"   id="progress" />

Or if its custom controller, 

Query the field in you controller pass the list to VF page and access

<apex:outputField value="Obj.Progress__C" id="progress" />

most impartent thing you have to re-render the progress field at each table field up. 

Hope this will help you

Thanks
karthik
 
UmmiUmmi
i added this code still it is not displaying
karthikeyan perumalkarthikeyan perumal
kinldy share your code  let me check what you have tried. 

formula field code  
Visualforce page code. 

Thanks