Exemplo n.º 1
0
        $col = $this->dtg->CreateCallableColumn('Link', [$this, 'dtg_LinkRender']);
        $col->HtmlEntities = false;
        $col = $this->dtg->CreateCallableColumn('Button', [$this, 'dtg_ButtonRender']);
        $col->HtmlEntities = false;
        $this->lblVars = new QLabel($this);
    }
    public function dtg_LinkRender($item)
    {
        return QHtml::RenderTag('a', ['href' => $item], urldecode($item));
    }
    public function dtg_ButtonRender($item)
    {
        $strControl = new QButton($this);
        $strControl->Text = 'Button';
        $strControl->ActionParameter = $item;
        $strControl->AddAction(new QClickEvent(), new QServerAction('btn_click'));
        return $strControl->Render(false);
    }
    protected function btn_click($strFormId, $strControlId, $strParameter)
    {
        QApplication::Redirect($strParameter);
    }
    public function BindData()
    {
        $a = [QHtml::MakeUrl(QApplication::$ScriptName, null, 'anchor'), QHtml::MakeUrl(QApplication::$ScriptName, ['a' => 1, 'b' => 'this & that', 'c' => '/forward\\back']), QHtml::MakeUrl(QApplication::$ScriptName, ['a' => 1, 'b' => 'this & that', 'c' => '/forward\\back'], null, QHtml::HTTP, $_SERVER['HTTP_HOST']), QHtml::MailToUrl('test', 'qcu.be', ['subject' => 'Hey you.']), QHtml::MailToUrl('test', 'qcu.be', ['subject' => 'What & About \\ this /']), QHtml::MailToUrl('"very.(),:;<>[]\\".VERY.\\"very@\\ \\"very\\".unusual"', 'strange.email.com', ['subject' => 'What & About \\ this /'])];
        $this->dtg->DataSource = $a;
        $this->lblVars->Text = var_dump($_GET);
    }
}
UrlForm::Run('UrlForm');