24 lines
849 B
XML
24 lines
849 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<panel-form xmlns="http://www.davinti.com.br/vitruvio/form/panel"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://www.davinti.com.br/vitruvio/form/panel https://bitbucket.org/davinTI/vitruvio-xds/raw/master/vitruvio-panel-form.xsd">
|
|
<form formKey="meuForm" width="100%">
|
|
<name></name>
|
|
<description></description>
|
|
<components>
|
|
<VerticalLayout spacing="true" margin="true" height="100%" width="100%">
|
|
<TextField id="txfTeste" type="email" caption="Teste" />
|
|
<ButtonWidget id="btnTeste" caption="Enviar" style="BLUE" width="100px">
|
|
<onClickScript language="JavaScript">
|
|
<![CDATA[
|
|
function run() {
|
|
engine.isValid();
|
|
}
|
|
]]>
|
|
</onClickScript>
|
|
</ButtonWidget>
|
|
</VerticalLayout>
|
|
</components>
|
|
</form>
|
|
</panel-form>
|