Use these expression parameters in a form's view expressions.
| Parameter | Description |
|---|---|
| @ncontainer | Reference to a naming container that has an expression. |
| @bcontainer | Reference to a binding container that has an expression. |
| @template | Reference to the template (form view) that contains an expression |
| @page | Reference to a page. |
Code Sample
The following JavaScript code snippet demonstrates how to find a grid control using client side code, that has the ID Grid1, which sits inside a form with the ID Form1.
<%@ Control %>
<script>
function pageLoad()
{
var grid = $findByControlId("controlname");
//put your logic here....
}
</script>
<sq:Form runat="server" ID="Form1">
<ContentTemplate>
<sq:Grid runat="server" ID="Grid1">
</sq:Grid>
</ContentTemplate>
</sq:Form>
<sq:Grid runat="server" ID="Grid1"></sq:Grid>
— Eugene Milkis on 12/09/2017
Please add examples for @bcontainer, @template, @page usage