SaurabhR
SaurabhR

Reputation: 129

EnableCustomBinding in Telerik MVC Grid

Hello How do EnableCustomBinding in Telerik MVC,

I know how to do it in c# but I am new to vb.net please let me know

C# code For EnableCustomBinding

[GridAction(EnableCustomBinding = true)]

How to convert above code in VB.net

Thanks

Upvotes: 0

Views: 986

Answers (1)

Atanas Korchev
Atanas Korchev

Reputation: 30671

Should be

<GridAction(EnableCustomBinding := true)>

Upvotes: 1

Related Questions