Custom control encapsulated in a separate VSPX page. This is a wrapper for custom control instantiation. The target URL MUST contain a valid VSPX page reference. In this way repeatable pieces of code can be reused in form of instantiation of their page class, this is different from inclusion. The target page variables can be initialized as attributes in this control, where name of attribute is a name of variable of target page and value is an expression to be assigned.
A page level unique name identifying a control.
A human readable comment.
Determines whether a control is initially visible. True by default. Could be data-bound to an SQL expression.
Determines whether a control is visible. True by default. Could be data-bound to an SQL expression.
Determines whether a control instantiate its children. It is true by default. It could be data-bound to an SQL expression. Unlike most of calcucateable attributes, the value of this attribute for a control is calcluated before calling 'on-init' event handler of the control; other values are calculated before calling 'before-data-bind' event handler.
At run time every control is represented as an instance of some user-defined type (UDT). VSPX compiles selects the UDT to use depending on name of the XML element that represents the control and maybe some of its attributes. In some specific cases the application developer may instruct VSPX compiler to use some other UDT, e.g. an application-specific UDT that is derived from the preset one. If specified, the value of 'control-udt' attribute should be equal to the name of the desired target UDT.
This attribute is for internal use only. It has no effect if added to the source VSPX file.
Visible width of the control when it is displayed in WYSIWYG tools when the source VSPX text is edited. The value of this attribute will not be used when the resulting HTML is rendered.
Visible width of the control when it is displayed in WYSIWYG tools when the source VSPX text is edited. The value of this attribute will not be used when the resulting HTML is rendered.
Reference to a VSPX page to be instantiated as a control.
URI of the source document where the tag comes from.
Line number in the source document where the tag comes from.
This defines what sort of data are saved to the debugging log.
create type vspx_vscx under vspx_form self as ref temporary constructor method vspx_vscx (name varchar, parent vspx_control, uri varchar), overriding method vc_pre_render (stream any, n int) returns any
<?xml version="1.0"?> <!-- - - $Id: vscx__0.vspx,v 1.2 2006/08/16 00:04:15 source Exp $ - - This file is part of the OpenLink Software Virtuoso Open-Source (VOS) - project. - - Copyright (C) 1998-2006 OpenLink Software - - This project is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by the - Free Software Foundation; only version 2 of the License, dated June 1991. - - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - - This page will embed another page twice, but not as simple inclusion. The second page is treated as a control and it's page class will be instantiated twice as as a child of outer page.
<v:page name="outer_page" xmlns:v="http://www.openlinksw.com/vspx/"> <html> <body> <v:variable name="var1" type="int" default="0" /> <h3>Embeeding a page as a custom control</h3> <v:form type="simple" name="f1"> <div> <div>control1</div> <v:vscx name="bar1" url="vscx__1.vspx"/> </div> <div> <div>control2</div> <v:vscx name="bar2" url="vscx__1.vspx"/> </div> <div> <v:text name="txt2" /> <v:button action="simple" value="Outer" name="b2" /> </div> </v:form> </body> </html> </v:page>
<?xml version="1.0"?> <!-- - - $Id: vscx__1.vspx,v 1.2 2006/08/16 00:04:15 source Exp $ - - This file is part of the OpenLink Software Virtuoso Open-Source (VOS) - project. - - Copyright (C) 1998-2006 OpenLink Software - - This project is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by the - Free Software Foundation; only version 2 of the License, dated June 1991. - - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - - This page is used inside vscx__0.vspx one as a custom control.
<v:page name="custom_bar" xmlns:v="http://www.openlinksw.com/vspx/"> <v:variable name="test" type="int" default="12" /> <table border="1" cellspacing="1" cellpadding="0"> <tr> <td> <v:url name="u1" value="Home" url="--http_path ()" /> | </td> <td> <v:url name="u2" value="Settings" url="--http_path ()||'?settings'" /> | </td> <td> <v:url name="u3" value="Posts" url="--http_path ()||'?posts'" /> | </td> <td> <v:url name="u4" value="Maintenance" url="--http_path ()||'?maint'" /> </td> </tr> </table> <div> <v:form type="simple" name="f1"> <v:text name="txt1" /> <v:button name="b1" action="simple" value="Inner"/> </v:form> </div> </v:page>