The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
66 views

How to make a Cascading (Dependent) Select List (Drop Down) in a Data Table in VisualForce?

Outside of a data table, a cascading select list (or drop down) is done generically like so: <apex:selectList value="{!parentValue}"> <apex:selectOptions value="{!ParentOptions}" /> ...
3
votes
4answers
123 views

How do we dynamically add columns in a datatable

I am trying to build a VF page which dynamically displays the datatable. The fields to be displayed are not known, they need to taken from a custom setting. Here is what i am trying to achieve I ...
-1
votes
1answer
40 views

Want the table head in a Row

In my datatable am not able to manage the table head properly. I want them in a Row but i want the as Mon tue Wed thu fri Sun My code <apex:pageBlock > <apex:pageBlockSection ...
3
votes
2answers
69 views

replicate salesforce alphabetic sorting feature on list views

Has anyone ever tried to replicate the alphabet sorting functionality you see in the list views? Any ideas on how to achieve this?
4
votes
2answers
65 views

Displaying more rows

I have a simple table for displaying users... <apex:page standardController="User" recordSetVar="Users" tabStyle="User"> <apex:pageBlock > <apex:pageBlockSection title="Today’s ...