BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
@Html.EJ().Tab("Dish").Items(data =>
{
data.Add().ID("dish").Text("dish Menu").ContentTemplate(@<div></div>);
data.Add().ID("type").Text("dish Type").ContentTemplate(@<div></div>);
data.Add().ID("sandwich").Text("Sandwich Type").ContentTemplate(@<div></div>);
})
@Code
Dim tabbuilder = Html.EJ().Tab("Dish")
tabbuilder.ShowCloseButton(true)
tabbuilder.EnableRTL(false)
tabbuilder.EnablePersistence(false)
tabbuilder.Items(Sub(items)
items.Add().ID("dish").Text("Dish Menu").ContentTemplate(Sub()
@<div>
<p>Pizza cooked to perfection tossed with milk, vegetables, potatoes, poultry, 100% pure mutton, and cheese - and in creating nutritious and tasty meals to maintain good health.</p>
</div>End Sub)
items.Add().ID("type").Text("dish type").ContentTemplate(Sub()
@<div>
dish cooked to perfection tossed with milk, vegetables, potatoes, poultry, 100% pure mutton, and cheese - and in creating nutritious and tasty meals to maintain good health.
</div>End Sub)
items.Add().ID("sandwich").Text("Sandwich type").ContentTemplate(Sub()
@<div>
Sandwich cooked to perfection tossed with bread, milk, vegetables, potatoes, poultry, 100% pure mutton, and cheese - and in creating nutritious and tasty meals to maintain good health.
</div>End Sub)
End Sub).Render()
End Code |