BuilderFactoryExtensions.QueryBuilder(BuilderFactory, String) Method
The BuilderFactory extension method that creates the HTML content builder for the Web Query Builder.
Namespace: DevExpress.AspNetCore
Assembly: DevExpress.AspNetCore.Reporting.v24.2.dll
NuGet Package: DevExpress.AspNetCore.Reporting
#Declaration
public static QueryBuilderHtmlContentBuilder QueryBuilder(
this BuilderFactory factory,
string name
)
#Parameters
Name | Type | Description |
---|---|---|
factory | Builder |
The Builder |
name | String | A string that identifies the element on a page. |
#Returns
Type | Description |
---|---|
Query |
The object that builds the Web Query Builder. |
#Remarks
Use this extension method to create the HTML content builder for the Web Query Builder and generate an element on a page.
@(Html.DevExpress()
.QueryBuilder("webQueryBuilder")
.Height("400px")
.Bind(Model))