From 85fb1d0a02e36ae49224706e20f3e0abb234081b Mon Sep 17 00:00:00 2001 From: Dany De Bontridder Date: Tue, 26 Sep 2017 22:56:27 +0200 Subject: [PATCH] Inplace_Edit : improve button + test --- scenario/inplace_edit.test.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/scenario/inplace_edit.test.php b/scenario/inplace_edit.test.php index 680016591..5f2acfba8 100644 --- a/scenario/inplace_edit.test.php +++ b/scenario/inplace_edit.test.php @@ -33,15 +33,14 @@ if (!isset($_REQUEST["TestAjaxFile"])) { /*********************************************** * If TestAjaxFile is not set it is not a ajax call *********************************************** */ - $hello = new IText("hello"); - $hello->value = "2012"; + $hello = new IText("hello","Click me"); $hello->id = "hello_ajax"; $ajax_hello = new Inplace_Edit($hello); $ajax_hello->set_callback("ajax_test.php"); $ajax_hello->add_json_param("TestAjaxFile", __FILE__) ; $ajax_hello->add_json_param("gDossier", Dossier::id()); - echo $ajax_hello->input(); + echo "#".$ajax_hello->input()."#"; } else { @@ -55,7 +54,7 @@ if (!isset($_REQUEST["TestAjaxFile"])) { $ajax_hello->set_callback("ajax_test.php"); $ajax_hello->add_json_param("TestAjaxFile", __FILE__); $ajax_hello->add_json_param("gDossier", Dossier::id()); - echo $ajax_hello->ajax_input(); + echo " [ ".$ajax_hello->ajax_input()." ] "; } if ( $action == "ok") { $ajax_hello = Inplace_Edit::build($input);