21288 Posts in 5733 Topics by 2602 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 604 Views |
-
redirect search result

23 July 2010 at 4:08am Last edited: 23 July 2010 4:14am
Hi!
I create a form that make a query in my db. I have search form in ArticlePage (page type 1) and I want show data in AccountsPage (page type 2). Both of them extend Page. After search my url become this http://.../articlepage/accountspage ant this isn't correct..I want the result of my search here http://.../accountspage. I write my code here..function Ricerca() {
$fields1 = new FieldSet(
new TextField(
$name = "Testo:", $title = "", $value = "")
);
$actions = new FieldSet(
new FormAction('doRicerca', 'CERCA')
);return new Form($this, 'Ricerca', $fields1, $actions);
}So in my ArticlePage.ss I write $Ricerca.
This is my action:
function doRicerca($data, $form) {
....query..
$array_data='result of my query';
return $this->customise(array('Linkx' => $array_data))->renderWith(array('AccountsPage', 'Page'));
}In my AccountsPage.ss i write $Linkx but this seems don't work..How can redirect my result to AccountsPage?
Help!! -
Re: redirect search result

23 July 2010 at 7:15am
Might this help...
http://doc.silverstripe.org/searchcontext?s[]=pagination
| 604 Views | ||
|
Page:
1
|
Go to Top |


