or
type="Telerik.Web.UI.WebResource"
to
type="Telerik.Web.UI.WebResourceSession".
<telerik:RadListView runat="server" ID="lvTest"> <ClientSettings> <DataBinding> <ItemTemplate> <div class="item"> #= Text# </div> </ItemTemplate> <EmptyDataTemplate> <div>No items</div> </EmptyDataTemplate> <DataService Location="~/Code/GenericHandlers/TestWS.asmx" DataPropertyName="Data" CountPropertyName="Count" DataPath="GetData" SortParameterType="Linq" FilterParameterType="Linq" /> </DataBinding> </ClientSettings></telerik:RadListView><System.Web.Script.Services.ScriptService()> _<System.Web.Services.WebService(Namespace:="http://tempuri.org/")> _<System.Web.Services.WebServiceBinding(ConformsTo:=WsiProfiles.BasicProfile1_1)> _<ToolboxItem(False)> _Public Class TestWS Inherits System.Web.Services.WebService <WebMethod()> _ Public Function GetData() As String Return Json(New With {Key .Data = New Temp() {New Temp("Item1"), New Temp("Item2")}, .Count = 2}) End FunctionEnd ClassPublic Class Temp Private _text As String Public Property Text() As String Get Return _text End Get Set(ByVal value As String) _text = value End Set End Property Public Sub New(ByVal pText As String) _text = pText End SubEnd ClassHi There
I would like to make the visibility of GridNumericColumn of Telerik grid at runtime.
I have a control at my web page say dropdown box with three different values and what I want when dropdown box got a value single then I would like to make the visibility of GridNumericColumn to false.
I hope someone might be able to help me
Thanks
Syed

