The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
66 views

Display records on next row in table

Hi i want to display a list in table in following way.. rec1 rec2 rec3 rec4 rec5 rec6 rec7 rec8 rec9 rec19 rec11 rec12 Where the records are displayed on the next row when a ...
1
vote
1answer
38 views

Dynamic table in salesforce using HTML

I have a list of record in my controller. I want to display the record into my VF page but don't want to use salesorce components want to display the list into a HTML table 1 by 1. How to achieve ...
1
vote
1answer
70 views

How to merge cells in apex:panelGrid?

I do not want to resort to HTML. How to merge cells in <apex:panelGrid>? The below diagram shows column span merge using HTML tables. How to do both, column and row span merge, using ...
3
votes
2answers
42 views

Orderable columns

I am using a apex:pageBlockTable with apex:columns on VF page. Is there any tag I can ad to have sortable columns. Note: I would like the column sorting to be in - memory rather than hitting the ...
4
votes
2answers
64 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 ...
0
votes
1answer
49 views

How do I apply anchor psuedo classes (a:hover, etc.) to element links in a data repeater

I do a table on my page with site.com. My table has 2 columns. I want can click on my data (so i want my data in columns will be a link). I do it. But now i want to customize my link. i can't do it. ...
2
votes
1answer
34 views

Refresh table on site.com page

I do a website with site.com. My page is doing like this : - a form for add a data for my object - a table with the data of my object. When I add a data with my form, it's necessary I do ...
1
vote
1answer
48 views

Logic to display table rows

I am display table rows in my email template... <tr> <td>{!relatedTo.opportunity__r.name}</td> <td>{!relatedTo.opportunity__r.stageName}</td> </tr> ...
0
votes
1answer
53 views

Adding order and a filter to data in a table in email template

In my email template, I am displaying entities in a association in table, doing the following: <table border="0"> <tr> <th>Opportunity</th><th>Digest ...