![]() |
Sergey Kornilov admin 9/22/2008 |
Johan, |
J
|
johan-v author 9/22/2008 |
Johan, documentation on new visual templates tags will be available in final version of PHPRunner. We dropping all conditional tags moving logic to PHP code. This makes visual templates more stable and allows to avoid "Reset" issues.
|
J
|
johan-v author 9/23/2008 |
Hello, |
![]() |
Sergey Kornilov admin 9/23/2008 |
Johan, |
J
|
johan-v author 9/25/2008 |
Johan, you don't have to worry about existing projects. PHPRunner 5.0 supports both Smarty (for existing projects) and it's own, simplified template language for new projects.
|
![]() |
Sergey Kornilov admin 9/25/2008 |
Yes, this is what I'm trying to communicate. |
J
|
johan-v author 9/26/2008 |
Yes, this is what I'm trying to communicate. If you create a new project in V5 your logic need to reside on the server side.
|
N
|
nix386 10/14/2008 |
I too have a need to do this (if condition to display the add button or not dependent on if the user is coming from a master table) Add button code on the detail list page
|
J
|
Jane 10/14/2008 |
Nick, global $xt; if (@$_REQUEST["masterkey1"]) { $xt->assign("add_link",1); } else { $xt->assign("add_link",0); } |
N
|
nix386 10/14/2008 |
Nick, use following code in the List page: Before display event for PHPRunner 5.0:
global $xt;
|