The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
2 views

Validation error message shows for all Inputfield in pageblocktable

I have a custom page with standard controller and extension. In that I have a page block table with inputField to display account lookup. When page is submitted with wrong Account value in acccount ...
1
vote
1answer
42 views

Display javascript result in a pageblocktable

I am making a Ajax call to a REST API and parsing the response and maintaining the parsed values in a delimited string. I want to display the same string in the pageblocktable without taking the ...
2
votes
0answers
34 views

Translate picklist value in PageBlock title

We are using <apex:pageBlock title="{account.MyField__c}"> where MyField is a picklist with the corresponding translations. The problem is that the picklist value is not translated to the ...
4
votes
3answers
80 views

pageblocktable rows spanning over page breaks when rendered as pdf

I have a pageblocktable that is being rendered as a pdf. The PDF is set as A4 landscape with small margins and page numbering in a style sheet. The problem is that rows in the pageblocktable span the ...
2
votes
2answers
164 views

Label does not get displayed

I am using a apex:inputField in my vf page. This apex:inputField is in page block with apex:inputField their is also a apex:selectOption, to reduce the space between these 2 fields i put them in a ...
2
votes
1answer
77 views

How to create two tables in a apex:pageBlockSection

I want to develope somthing like this screenshot in an apex:pageBlockSection. How can i develop this??
1
vote
1answer
26 views

Reference from page to SObject which is another package

I have a reference in VF page to a SOBject from another package like this... <apex:pageBlockTable value="{!UsageStats}" var="usageStatRecord"> <apex:column ...
3
votes
1answer
105 views

how to make a list persist in a controller on page redirect

I have the following search function: public List<User> SearchResults {get; set;} public ContactSearchController() { if(SearchResults == null) { ...
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 ...
2
votes
1answer
128 views

Rerender the column in the page block table on command button

I have a page block table whilch has two columns one with the data and the other with two buttons to move the records up and down. I am not able to rerender the column on the change. The code is as ...
2
votes
1answer
88 views

Hide and show pageblock on button click

I am tying to hide and show apex:pageblocker on the bases of the value in list. But i am not able to show when value is not been selected. My anybody tell me what is wrong. I am getting value in the ...