Hi! Maybe it's sounds trivial, but I can't figure how to resolve it.
I have a page with a table, based on the "Employee Directory" example, when click on a row activates the rowClick event and passes to It the Id. Here everything is OK, then I need to pass this Id as a parameter to an other page in order to edit some info related to the row selected.
I tried with:
redirectTo('edit.php') but this method doesnt support parameters
appendView('edit.php',null,$id) appends the page at the end of my current page, so I need to be complete replaced
Thanks for the help.