The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
47 views

reRender not being called, yet controller is executing

I'm stuck on a reRender issue. I have a commandButton element which calls an action function, which should reRender a pageBlock on return and then trigger an oncomplete event. Action button in ...
2
votes
1answer
30 views

prevent from checking errors on rerender a section

When I rerender a pageBlockSection and a field is required but not filled, then an error is displayed on page. I don't want these errors untill I click on save button. So, how to prevent the checking ...
0
votes
2answers
24 views

error on required input fields on rerender a section [duplicate]

I have 3 input fields in a pageblocksection, all are required. first field is select list, based on second field is rendered. so, when I select value from select list then an action function is ...
0
votes
1answer
45 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
2answers
142 views

Using apex:outputPanel within apex:repeat

I'm working on the following problem; I have an <apex:repeat> element which contains a <tr>. In some cells of the row I have an <apex:outputPanel> element. If the page is rendered ...
1
vote
2answers
114 views

Independently edit and save list-view record in place

Question: How can I independently edit and save each row/record in a custom list-view? Background: I'm displaying a list of custom object records using apex:repeat. I included input and output fields ...
5
votes
1answer
92 views

I am having a peculiar predicament in regards to using apex:actionSupport

I am having a peculiar predicament in regards to using apex:actionSupport. I am selecting a collection of values on a VisualForce page (through the use of a wrapper class in the controller) with the ...
4
votes
1answer
114 views

Lookup popover freezing in place

I have a custom Visualforce page that includes a dynamically sized table. The first column in the table is a Lookup to Account. When that value is chosen, some logic is run to populate some of the ...
5
votes
2answers
171 views

Funny behavior with components, javascript, and rerender

Has anyone else seen something like this? 1) Create a component that includes a javascript block (OK, the code is overkill, but pretend it's actually doing something): <apex:component ...
0
votes
1answer
65 views

How to resolve a inputfile rerender problem?

I have a VF page to create the cases and to insert the attachments to case.On Changing the picklist values i have to rerender the entire page to enter new values. But I have a inputfile tag in the VF ...
4
votes
3answers
95 views

Rerender an apex:component

I have a component within an outputPanel like this: <apex:panelGrid columns="5" id="theDataGrid"> <c:GraphAndTable whichData="leadByRep" description="Description 1"/> ...
4
votes
2answers
177 views

Rerender apex:details after DML async method call

I have found a strange behaviour and I can't find why does it happening. I have custom object Test2_c with custom text field Status_c. I want to change it's status asynchronously, so I prepare a VF ...
2
votes
3answers
670 views

Visualforce SelectList value not setting on Rerender

I'm pretty sure I'm missing something really simple here. I've done this a number of times, but even using my past examples I just can't seem to get this to work. Scenario: I have a Page using a ...