BarcodeBuilder
Defines the fluent interface for configuring the Barcode.
Methods
Value(System.String)
Sets the value of the barcode
Parameters
value - System.String
RenderAs(Kendo.Mvc.UI.RenderingMode)
Sets the preferred rendering engine. If it is not supported by the browser, the Chart will switch to the first available mode.
Parameters
renderAs - RenderingMode
The preferred rendering engine.
Value(System.Int32)
Sets the value of the barcode
Parameters
value - System.Int32
Background(System.String)
Sets the background color of the barcode area
Parameters
value - System.String
Border(System.Action)
Configures the options for the border of the Barcode
Parameters
configurator - System.Action<BarcodeBorderBuilder>
Padding(System.Action)
Configurator to fine tune the padding options
Parameters
configurator - System.Action<BarcodeSpacingBuilder>
Padding(System.Int32)
Specifies padding for top,bottom,right and left at once.
Parameters
padding - System.Int32
Checksum(System.Boolean)
Specifies whether the Checksum should be displayed next to the text or not
Parameters
checksum - System.Boolean
Color(System.String)
Specifies the color of the bars
Parameters
color - System.String
Text(System.Action)
Configures options for the Text of the Barcode
Parameters
configurator - System.Action<BarcodeTextBuilder>
Encoding(Kendo.Mvc.UI.BarcodeSymbology)
Sets the symbology which will be used to encode the value of the barcode
Parameters
encoding - BarcodeSymbology
Height(System.Int32)
Sets the height of the barcode area
Parameters
height - System.Int32
Width(System.Int32)
Sets the width of the barcode area
Parameters
width - System.Int32
ToComponent()
Returns the internal view component.
Name(System.String)
Sets the name of the component.
Parameters
componentName - System.String
The name of the component.
Example
@(Html.Kendo().Grid<OrderViewModel>()
.Name("grid")
.Columns(columns =>
{
columns.Bound(p => p.OrderID).Filterable(false);
columns.Bound(p => p.Freight);
})
.DataSource(dataSource => dataSource
.Ajax()
.PageSize(20)
.Read(read => read.Action("Orders_Read", "Grid"))
)
)
Deferred(System.Boolean)
Suppress initialization script rendering. Note that this options should be used in conjunction with Kendo.Mvc.UI.Fluent.WidgetFactory.DeferredScripts(System.Boolean)
Parameters
deferred - System.Boolean
ModelMetadata(System.Web.Mvc.ModelMetadata)
Uses the Metadata of the Model.
Parameters
modelMetadata - System.Web.Mvc.ModelMetadata
The metadata set for the Model
HtmlAttributes(System.Object)
Sets the HTML attributes.
Parameters
attributes - System.Object
The HTML attributes.
HtmlAttributes(System.Collections.Generic.IDictionary)
Parameters
attributes - System.Collections.Generic.IDictionary<String,Object>
AsChildComponent()
Render()
Renders the component.
Example
@(@Page Inherits="System.Web.Mvc.ViewPage<IEnumerable<Product>>" )
@( Html.Kendo().Grid(Model)
.Name("grid")
.DetailTemplate(product => {
)
Product Details:
<div>Product Name: @( product.ProductName )</div>
<div>Units In Stock: @( product.UnitsInStock )</div>
@(
})
.Render();
)