0

ATK4 4.1.1を使用していて、ページにボタンを追加しました。このボタンを押すとデータベーステーブルの更新がトリガーされるようにしたいので、ページにこのようなコードを作成しました。

    $f=$p->add('Form',null,null,array('form_empty'))->setFormClass('horizontal bottom-padded');

    $b1=$f->add('Button')->set('Finished');
    $b1->js("click")->univ()->ajaxec($this->api->url(null, array("s"=>"D")));

    $b1->js('click', $b1->js()->load(
      $this->api->url(null,array('s'=>'D'))
    ) );

    ..  ..   ..  ..  

   if (isset($_GET['s'])) {            
      $ss=$this->add('Model_SprintStatus')
               ->loadBy(array('member_id'=>$p->api->auth->get('id')));
       $new_status=$_GET['s'];
       $ss->set('status',$new_status);
       $ss->update();
    }

このページにアクセスすると「OK」と表示されますが、ボタンをクリックすると「メソッド」というエラーが表示されます

BaseException

 Method is not defined for this object

 Additional information:

 method: url
 arguments: Array ( [0] => [1] => Array ( [s] => D ) 

次のagiletoolkit.orgセクションのAnatomyofthereloadという例を使用しました。このエラーが発生したので、例を取り上げ、例と同じコードを使用して新しいページを作成しました。そのページからも同様のエラーが発生します。

  BaseException

  Method is not defined for this object

  Additional information:

  method: url
  arguments: Array ( [0] => [1] => Array ( [side] => 1 [myajax] => 1 ) ) 

上記のajaxecラインを試すことに加えて、私は次のことも試しました

 $b1->js('click', $b1->js()->load( $this->api->url(null,array('s'=>'D'))));

 $b1->js('click', $b1->js()->atk4_load( $this->api->url(null,array('s'=>'D'))));

しかし、同じエラーで戻ってきます。

何かを見逃したか、ATK4 4.1.1と4.2の間の変更である可能性がありますが、期限を守ろうとしているため、現時点ではアップグレードする立場にないため、この更新をATK4.1.1のボタンクリック

ありがとう

4

2 に答える 2

1

より簡単な方法があります:

if($this->add('Button')->setLabel('Clickme')->isClicked()){

      // ....

      $this->js()->univ()->successMessage('Updated')
           ->page($this->api->getDestinationURL())->execute();

}

これはhttp://agiletoolkit.org/whatsnew/may2011で簡単に文書化されただけです

于 2012-07-23T11:31:52.560 に答える
0

そして答えは...

    // create a form to put the button in with minimal styling
    $f=$p->add('Form',null,null,array('form_empty'))->setFormClass('horizontal bottom-padded');

    // Add the button with a confirm request and do an ajax call
    // passing a new GET parameter called state
    $f->add('Button')->set('Update')
        ->js('click')->univ()->confirm('Confirm ?')
        ->ajaxec($this->api->getDestinationURL(null,array('state'=>'D')));

    // If the parameter is set, this is executed by the ajax callback
    if (isset($_GET['state'])) {             
         //add the model (change name to yours)
         // You can either use load($id) if you already have the primary key
         // or an array of fields and use loadBy to get the records to be updated 
         $ss=$this->add('Model_SprintStatus')->loadBy(array(
                'member_id'=>$p->api->auth->get('id')
                )
              );

          // set some variables to hold the old status from the model 
          // and the new one which was in the GET parameter we passed
          $old_status=$ss->get('status');
          $new_status=$_GET['state'];

          // Set the status column to the new value and execute the update
          $ss->set('status',$new_status);
          $ss->update();

          // and provide some feedback to the user that it worked !
          $this->js()->univ()->successMessage('Updated')
               ->page($this->api->getDestinationURL())->execute();
    }

ユーザーへのフィードバックが必要ない場合は、ボタン定義の-> confirm()とsuccessMessageを含む行全体を省略できます。おそらく、if(isset(isset(isset(isset(isset(isset(isset( $ _GET .. ..

于 2012-07-19T17:40:15.267 に答える