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

  • Home
  • SEARCH
  • 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 3321066
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T23:01:05+00:00 2026-05-17T23:01:05+00:00

I have a page that accepts parameters from the user. I read this parameter

  • 0

I have a page that accepts parameters from the user. I read this parameter in my action using params.playerId. and then do the computations with it.

I have changed my UI now and am using extJS for display purposes.
Therefore I have an edit and an editData action.
editData action has the code to run the sql and execute the appropriate js file and displays edit.jsp. However, in the editData action, when I use params.playerId, I get a null value.

What can be a work round for this scenario?

My code before integrating with extJS: list action is called and list.gsp is displayed with data.

def list = {

def session = sessionFactory.getCurrentSession()
def result = session.createSQLQuery(“select player_id from w.music where player_id=(params.playerId)”).list();
def tuneInstanceList = new ArrayList()
def tune = new Tune()
result.each
{
tune.playerId = it
tune.playerPrice = “100” tuneInstanceList.add(tune)
}
[recoveryInstanceList: recoveryInstanceList]
}
Now, when I ntegrate with extJS, I get the value of params.playerId as null. Code is below.

list.gsp:

<%@ page import=”tune.Music”%>

   <script type="text/javascript">  

   var ds = new Ext.data.Store({ 
       autoLoad: true, 
       proxy: new Ext.data.HttpProxy({ 
       url: 'http://localhost:8080/tune/music/listData'}), 
       reader: new Ext.data.JsonReader({ 
        results: 'total', 
        root:'items', 
        id:'id' 
       }, 
       [ 
               {name: 'playerId'}, 
               {name: 'playerPrice'} 

          ] 
       ) 
    }); 

    var cm = new Ext.grid.ColumnModel([ 
        {header: "Player Id", width: 70, sortable:true,  dataIndex: 'playerId'}, 
        {header: "Player Price", width: 90, dataIndex: 'playerPrice'} 


    ]); 
    //cm.defaultSortable = true; 

    // create the grid 
    var grid = new Ext.grid.GridPanel({ 
        ds: ds, 
        cm: cm, 
        renderTo:'grid-example', 
        width:1300, 
        height:300 
    }); 
            </script> 

<div class="body"> 
<!--<g:javascript library="examples"/>--> 
<!-- EXAMPLES --> 
<h1>Ext Grid</h1> 



 <div id="grid-example"></div> 


</div> 

My controller action:

def list={ }

def listData = {
 def session = sessionFactory.getCurrentSession()   
def result = session.createSQLQuery("select player_id from w.music where player_id=    (params.playerId)").list();   
def tuneInstanceList = new ArrayList()   
result.each {  
 def tune = new Tune()  
 tune.playerId = it tune.playerPrice = "100"   
tuneInstanceList.add(tune)  
 }   
def listResult = [total: tunInstanceList.size(), items: tunInstanceList]  
 render listResult as JSON;   

}

How can I retrieve the parameters that have been entered by the user??

Thanks!

  • 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-05-17T23:01:06+00:00Added an answer on May 17, 2026 at 11:01 pm

    Worked around this issue by reading the parameters in list() action and saving it in a session.

    Then used this session data in the listData() action to do the computations.

    Not sure if this is the best approach. This is just a workaround.

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

Sidebar

Related Questions

No related questions found

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.