I have this Telerik RadComboBox and i want to bind it to angular js. I tried this
<telerik:RadComboBox
Width="100%"
ID="rcbPosition"
EmptyMessage="Please select position"
EnableLoadOnDemand="True"
ShowMoreResultsBox="True"
ng-model="Employee.PositionID"
EnableVirtualScrolling="True"
runat="server">
<WebServiceSettings
Path="~/WebService/wsPosition.asmx"
Method="GetPositions"></WebServiceSettings>
</telerik:RadComboBox>
but no luck.. any help please.