0

我正在使用 xampp 1.8.1 和 Qcubed 2.1.0 .. 都安装成功。我们在 phpmyadmin 中成功创建了数据库表。

通过 phpmyadmin 插入值时,您可以在 Qdatagrid 中看到记录但是当我们到达表单草稿时,qcubed 按钮 [save] 等不起作用(或以任何方式响应)!请帮忙!

4

2 回答 2

1

您是否收到任何 Ajax 错误?如果不查看 Firebug 或 Chrome 中的 net 选项卡,请查看响应,看看那里是否有错误。

如果这无济于事,请尝试发布一些示例代码。

于 2013-07-25T13:24:52.997 回答
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
}
于 2017-02-21T06:14:15.813 回答