Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8579125
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T20:32:45+00:00 2026-06-11T20:32:45+00:00

(Using jsf-2) I have a dataTable with one column which can be edited: <h:column>

  • 0

(Using jsf-2)

I have a dataTable with one column which can be edited:

        <h:column>
            <f:facet name="header">
                <h:outputText value="Label" style="font-weight: bold">
                </h:outputText>
            </f:facet>
            <h:inputText value="#{m.author2displayed}" rendered="#{m.editable}" size="10"/>
            <h:outputText value="#{m.author2displayed}" rendered="#{not m.editable}"/>
            <h:commandButton value="save edits" rendered="#{m.editable}" onclick="submit()" action ="#{finalCheckBean.saveedits()}"/>
        </h:column>

When I click on “save edits”, we stay on the same view and that’s the desired effect (finalCheckBean.saveedits() returns null).

Problem: the browser scrolls all back to the top of the page, whereas I’d like that the page stays displayed at the level of the row just edited. How can I achieve that?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T20:32:46+00:00Added an answer on June 11, 2026 at 8:32 pm

    If you’re already using JSF2, just bring in some ajax magic using <f:ajax> in the command button. Wrap the to-be-executed and rendered components in a common component and reference it in execute and render of <f:ajax>.

    <h:column>
        <f:facet name="header">
            <h:outputText value="Label" style="font-weight: bold" />
        </f:facet>
        <h:panelGroup id="author2displayed">
            <h:inputText value="#{m.author2displayed}" rendered="#{m.editable}" size="10"/>
            <h:outputText value="#{m.author2displayed}" rendered="#{not m.editable}"/>
            <h:commandButton value="save edits" rendered="#{m.editable}" onclick="submit()" action="#{finalCheckBean.saveedits()}">
                <f:ajax execute="author2displayed" render="author2displayed" />
            </h:commandButton>
        </h:panelGroup>
    </h:column>
    

    This way the scroll position will remain unchanged (provided that you still return null or void from the action method).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a JSF 1.2 dataTable using ICEfaces 1.8. In one column, I would
I'm using JSF 2.0. I have a managed bean which I can access through
I am using Struts Tiles with JSF to have one header, menu and footer
I have a h:commandLink in one of the column in datatable. JSF <h:commandLink id=save
I'm using JSF and I have a complex datatable where the user can sort
I have a small web application developed using Icefaces 1.8.2 and jsf 1.1 which
We are using JSF 2.0. We have to pass in view parameters from one
I have created a page using JSF 2.0. Below is what I have <h:dataTable
I'm using JSF 1.1. I have a JSP page with a .... <t:dataTable id=data
I have a problem using <pre> tag inside <td> . I have JSF datatable

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.