加载中...

yii_wiki_204_using-cjuidialog-to-edit-rows-in-a-cgridview(通过CJuiDialog在CGridView中修改行数据)


  1. /***
  2. Using CJuiDialog to edit rows in a CGridView
  3.  
  4. http://www.yiiframework.com/wiki/204/using-cjuidialog-to-edit-rows-in-a-cgridview
  5.  
  6. translated by php攻城师
  7.  
  8. http://blog.csdn.net/phpgcs
  9.  
  10. Scenario
  11. Solution
  12. Column hyperlink
  13. Javascript function
  14.  
  15. **/
  16.  
  17. /***
  18. 背景 Scenario
  19. ***/
  20.  
  21. 我这里有一个 一系列的 clients/events 所属的 CGridView 对每一行 eventClient), 我想要实现快速的编辑 eventClient对话框。
  22.  
  23. 我的方法基于 这篇wiki http://www.yiiframework.com/wiki/145/cjuidialog-for-create-new-model/
  24.  
  25. /***
  26.  
  27. 解决方法 Solution
  28.  
  29. ***/
  30.  
  31. 首先基于 wiki 145 做了所有工作后, 再来 修改我们 CGridView:
  32.  
  33. Column hyperlink
  34.  
  35. 对每一列 js 函数中设置 _updateComment_url 属性 为需要的 url
  36.  
  37. array(
  38. 'name'=>'comment',
  39. 'header'=>'Comments',
  40. 'type'=>'raw',
  41. 'value'=>'CHtml::link(
  42. ($data["comment"]?$data["comment"]:"(comment)"),
  43. "",
  44. array(
  45. \'style\'=>\'cursor: pointer; text-decoration: underline;\',
  46. \'onclick\'=>\'{
  47. updateComment._updateComment_url="\'.
  48. Yii::app()->createUrl(
  49. "eventClient/updateComment",
  50. array("id"=>$data["id"])
  51. )
  52. .\'";
  53. updateComment();
  54. $("#dialogComment").dialog("open");}\'
  55. )
  56. );',
  57. ),
  58.  
  59.  
  60. Javascript function
  61.  
  62. 在同一个页面我们将 调用这个 动作的 updateComment() 方法包含进来。
  63.  
  64. <script type="text/javascript">
  65. function updateComment()
  66. {
  67. // public property
  68. var _updateComment_url;
  69. <?php echo CHtml::ajax(array(
  70. 'url'=>'js:updateComment._updateComment_url',
  71. 'data'=> "js:$(this).serialize()",
  72. 'type'=>'post',
  73. 'dataType'=>'json',
  74. 'success'=>"function(data)
  75. {
  76. if (data.status == 'failure')
  77. {
  78. $('#dialogComment div.divComment').html(data.div);
  79. // Here is the trick: on submit-> once again this function!
  80. $('#dialogComment div.divComment form').submit(updateComment);
  81. }
  82. else
  83. {
  84. $('#dialogComment div.divComment').html(data.div);
  85. setTimeout(\"$('#dialogComment').dialog('close') \",2000);
  86. // Refresh the grid with the update
  87. $.fn.yiiGridView.update('event-client-grid');
  88. }
  89. } ",
  90. ))?>;
  91. return false;
  92. }
  93. </script>


还没有评论.