1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
@Actions({
@Action(value = "/jsontable" , results = {
@Result(name = "success", type = "json")
})
})
public String execute()
{
int to = (rows * page);
int from = to - rows;
//Count Rows (select count(*) from custumer)
records = CustumerDAO.count();
//Your logic to search and select the required data.
gridModel = CustumerDAO.find(from, to);
//calculate the total pages for the query
total =(int) Math.ceil((double)records / (double)rows);
return SUCCESS;
}
public String getJSON()
{
return execute();
}
//Getters and Setters for Attributes
} |
Partager