我正在使用xampp 1.8.1和Qcubed 2.1.0 ..两者都安装成功。 我们在phpmyadmin中成功创建了数据库表。
通过phpmyadmin插入值时,您可以在Qdatagrid中看到记录 但是当我们到达表单草稿时,qcubed按钮[保存]等不起作用(或以任何方式响应)! 请帮忙!
答案 0 :(得分:1)
您是否收到任何Ajax错误?如果没有查看Firebug或Chrome中的网络标签,请查看响应并查看是否存在错误。
如果这对尝试发布一些示例代码没有帮助。
答案 1 :(得分:0)
我认为你没有给出点击保存按钮时会发生什么的链接,所以没有任何事情发生。
示例:
$this->btnRefresh = new QButton($this);
$this->btnRefresh->Text = 'Refresh';
$this->btnRefresh->AddCssClass("btn-info");
$this->btnRefresh->AddAction(new QClickEvent(), new QAjaxControlAction($this, 'btnRefresh_click'));
它将调用此函数
public function btnRefresh_click(){
// the refresh code goes here
}