Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
580 views

RadComboBox dropdown below ONLY

Is there a way to force the dropdown of a RadComboBox to ONLY appear below and never above regardless of what the control feels would be the most visible?
2
votes
1answer
512 views

silverlight telerik radcombobox problem with autocomplete

I have a telerik radcombobox, I want to use the autocomplete feature so I set IsEditable to true and telerik:TextSearch.TextPath to the correct property. The autocomplete instead of letting you type ...
2
votes
1answer
289 views

User controls and Viewstate

I have a user control where I display a telerik radgrid and some textboxes and radcombo boxes. My radcombo boxes lose view state on postbacks. The text boxes and the grid maintain their state, but ...
2
votes
1answer
4k views

RadComboBox, how to get selectedItem

Dim sb As StringBuilder = New StringBuilder() sb.Append("<script language=javascript>") sb.Append(" function SetValueInBody() {") sb.Append(" ...
2
votes
1answer
2k views

Using Telerik RadComboBox within a repeater

I have a repeater that contains a Telerik RadComboBox: <asp:Repeater ID="rpt" runat="server"> <ItemTemplate> <telerik:RadComboBox ID="rcb" runat="server" ...
2
votes
2answers
6k views

Adding RadComboBox to RadGrid Edit

I have added a RadControl, RadGrid and I need to add a radComboBox in the edit mode. When user clicks on the radComboBox, I need to get both "text" and "value" of the radComboBox to save to table ...
1
vote
2answers
219 views

RadComboBox SelectedIndexChanged event not firing when using inplace editing in a RadGrid

I am using inplace editing on a RadGrid that is built using a class file. Everything is working well except I am having an issue the SelectedIndexChanged event not firing when the grid is in edit ...
1
vote
1answer
120 views

Bind RadComboBox to ObjectDataSource using DataSet

I'm trying to bind a RadComboBox to an ObjectDataSource whose select method returns a DataSet object. I get an error: "'FieldName', is neither a DataColumn nor a DataRelation for table Table". Just ...
1
vote
1answer
209 views

Problem with RadComboBox with ItemTemplate of asp:TextBox

I am using a RadComboBox with an ItemTemplate that contains 50 TextBox controls that a user can enter information into. I add the 50 TextBox controls dynamically (see below). When information is ...
1
vote
1answer
169 views

RadComboBox Items Sorting with RadComboBoxSort.None

What happens to RadComboBox's Items after you call: myCombo.Sort = RadComboBoxSort.None; myCombo.Items.Sort(); ??? Even when sort option is set to None, Items are sorted, but it is not sorted ...
1
vote
1answer
154 views

How to disable Keyboard Support for RadComboBox?

The RadComboBox control in Silverlight has Keyboard Support, listed in this page: Keyboard Support I need the RadComboBox features except the keyboard support. I don't find anything on the web to ...
1
vote
1answer
463 views

How to add an additional RadComboBoxItem to data bound RadComboBox?

I am using Telerik controls on my aspx page. I have cascading radcombo boxes(dropdown box). I have 3 of them on my page. the values of 2nd rad combo box depends on the 1st and the 3rd depends on ...
1
vote
2answers
504 views

Select The First Item In A RadComboBox

I'm trying to get a RadComboBox to select the first item in a result set but have not been able to do so. I have asked the Telerik folks and they can't get it to work either. I have a demo project ...
1
vote
1answer
1k views

Telerik RadComboBox Results Not Showing In IE9

I'm using a Telerik RadComboBox (rcb) using the .NET 3.5 framework (using the latest assemblies from Telerik) for an older project. The rcb works fine in Firefox 4, Chrome 10, IE7 and IE8, but the ...
1
vote
1answer
436 views

RadComboBox Load-On-Demand w/ “sticky” item

I have a RadComboBox that loads 10 items at a time (from a couple hundred items). For simplicity sake, the datasource is a List<Person> where: public class Person { public string Name { ...
1
vote
1answer
646 views

RadComboBox EmptyMessage not showing on initial load

For some reason my RadComboBox "EmptyMessage" is not showing on the initial load of the page but it does after I focus and blur out of the control. How can I force my "EmptyMessage" to show by ...
1
vote
0answers
578 views

Silverlight Telerik RadCombobox in the header of a RadMenu

I have a UserControl with a Radmenu in it. Here is the markup: <telerik:RadMenu HorizontalAlignment="Left" VerticalAlignment="Top" x:Name="UserManagementMenu" DataContext="{Binding}"> ...
1
vote
1answer
144 views

Why does $find(strSomeOtherRadAjaxPanel) return null?

Problem context: 1) rcbComboBoxInRadPanel is a Telerik RadComboBox. 2) rcbComboBoxInRadPanel has "OnClientSelectedIndexChange" event which fires "itemSelected." 3) rcbComboBoxInRadPanel is ...
1
vote
4answers
1k views

Set a default value in combobox programmatically

I am working on WPF. I am using visual studio 2010, .NET 4.0 and using a Radcombobox in my application. It is getting populated correctly with 3 strings in it and now I am having trouble choosing a ...
1
vote
1answer
475 views

Using the RadComboBox button, is it possible to populate a different combobox when one combobox makes a selection?

I have two combo boxes that are cascading. I would like to have it so that when I select something in ComboBox1, it will fire off a web method that automatically filters the list in ComboBox2. At ...
1
vote
1answer
1k views

Telerik Rad Combo Box And How Take It's Focus Off

hi my dear friends: i have two radcombobox on my page and i am controling their focus by jquery... also i have some code on their OnClientFocus , therefore focus and blur are so important ... my aspx ...
1
vote
1answer
1k views

DropDownList + OnSelectedIndexChanged + AutoPostBack=False

is it possible to force dropdown list to fire OnSelectedIndexChanged event without AutoPostBack=True? i told that because i have some RadComboBoxes(telerik) In My Form i am controling their focus ...
1
vote
1answer
3k views

Conditional Item Templates with RadComboBox

I have a RadComboBox that I am using to display department name and abbreviations. I am using an Item Template with a LinqDataSource to make each item appear as: DeptAbbr - (DeptName) Here is the ...
1
vote
1answer
679 views

RadGrid Specify ComboBox skin on edit?

I have a grid and a skin specified for that and it works fine. However, on the contained GridDropDownColumn columns, when it shifts to edit mode, the combo box is created nicely, but does NOT inherit ...
0
votes
0answers
68 views

MultiColumn Combo Autocomplete

I am working in WPF C# application. I am using MultiColumn RadCombobox to display the details. Xaml code <telerik:RadComboBox Name="cmbDetPatientName" Width="100" ...
0
votes
1answer
62 views

RadComboBox takes a long time to expand

Q: I use RadComboBox to filter my large list but i face two problems : 1- The dropdown expanding takes long time !! 2- the filtering just happens in firefox ,no filtering in internet explorer!! ...
0
votes
0answers
33 views

RadComboBox and CustomValidator

How do you prevent the RADCOMBOBOX from being FORM SUBMIT-ed with its value set at the EMPTYMESSSAGE attribute(I think in the DOM it becomes ->defaultvalue)??? I have a CUSTOMVALIDATOR but it won't ...
0
votes
3answers
122 views

programmatic creation of a multicolumn radcombobox

Anyone have a link to a code sample or can you provide a snippet to accomplish this task. I'm coming up blank on the Telerik site
0
votes
1answer
56 views

Telerik rabcombobox - How to set an image for loading comboboxes

Given the following example: http://demos.telerik.com/aspnet-ajax/combobox/examples/functionality/multiplecomboboxes/defaultcs.aspx I would like to add a small spinning .gif in front of the ...
0
votes
2answers
237 views

Can't disable Telerik dropdown list with JQuery

I'm trying to use JQuery to enable a Telerik RadComboBox based on the selection of another Telerik RadComboBox. Use case: User comes to page, ddlRequired is enabled, ddlListItems is disabled. If user ...
0
votes
0answers
286 views

How to automatically show validation tooltip in RadComboBox?

I need to make an editable Telerik RadComboBox show a customized tooltip when the data entered is invalid (in Silverlight). More specifically, instead of the error message I want to display an "X" in ...
0
votes
1answer
474 views

Microsoft JScript runtime error: 'getCities' is undefined

I am Using RadComboBox In UserControll I Want To Bind All The Cities With the CheckBoxes In RadComboBox. For That I Have Written Code As Follows : FOR ASPX :- <script type="text/javascript"> ...
0
votes
1answer
175 views

Telerik <RadCombo> on first selection of any item other than first is always resetting to first item

Telerik on first selection of any item other than first is always resetting to first item and it does not fire the selectedindexchange event. However, when the combobox is selected for a second time, ...
0
votes
0answers
102 views

Getting RadCombobox text using javascript (markfistmatch is set to true)

How to get the item in Radcombobox using javascript when MarkFirstMatch ="true"
0
votes
0answers
485 views

Silverlight Telerik RadComboBox IsEditable=“true” SelectedValue Problem

I have a RadComboBox as DataTemplate of a RadGridView. The Combo is defined like this: <Controls1:RadComboBox x:Name="RadComboBox1" HorizontalAlignment="Stretch" ...
0
votes
0answers
60 views

How to find textbox in radformview using javascript function fired on “Onclientsideselectedindexchanged” of a radcombobox in same radformview

I have two controls a textbox and a radcombobox in insertitemtemplate of a formview. What i want to do is when the event onclientsideselectedindexchanges of radcombobox is fired. I want to update the ...
0
votes
1answer
890 views

RadComboBox with Checkboxes AJAX problem

I have created radcombobox with list of checkboxes. User can select multiple checkboxes and when he check some item label on page must be updated (this.label.text += someValue). I added ...
0
votes
1answer
2k views

how to bind the radcombobox at runtime in asp.net

I have a webpage that has a Telerik RadComboBox in radgrid control on the page,and i have a SqlserverCe database.My issue is how can i write the code to bind the RadCombobox at page load event in ...
0
votes
0answers
197 views

Combobox scroll not Properly

I'm using RadCombobox Ajax control ,I have 2 combo box the second one fills pro grammatically on OnClientDropDownOpening event according to the first combo's selected item ,It works properly, but ...
0
votes
0answers
482 views

How to retrieve RadTree node value in a RadCombo inside a RadGrid(GridTemplateColumn) thru javascript?

I have a RadTreeView nested in a RadComboBox which is in a RadGrid(GridTemplateColumn). How can I get the selected node value thru client side script? I cant manage to set the text for the combobox ...
0
votes
2answers
680 views

RadGrid RadComboBox Client Popup Help

Need some help figuring this one please. I would like to add an On RowClick Event handler to my RadGrid to handle the selections from RadComboBox in the RadGrid Editform mode. What I would like to do ...
0
votes
2answers
862 views

RadComboBox OnClientItemsRequested not firing

Is there anything about my code below that would prevent the client event "OnClientItemsRequested" from firing? I have a couple RadComboBox elements on a page that sometimes get into a state where ...
0
votes
2answers
1k views

telerik RadComboBox find Returns null - why?

why the below javascript code always returns null (mean alert) ? <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication3.WebForm1" %> <%@ ...
0
votes
2answers
3k views

Telerik RadComboBox not showing Selected Item

I have a RadComboBox that i have bound like shown below <telerik1:RadComboBox Grid.Row="2" Grid.Column="1" Grid.ColumnSpan="3" Margin="5,2" ItemsSource="{Binding RepTypes}" ...
0
votes
1answer
826 views

How to - each RadComboBox in column inside RadGridView with unique data?

Here is what I want to achieve: I have RadGridView, let's call it gridView, with two columns - first contains ordinary text (GridViewDataColumn), second is a GridViewComboBoxColumn. Each row consist ...
0
votes
2answers
391 views

How to find a dynamically-generated HTML element?

I need to get the client-side instance of a RadComboBox (or the newly-selected value of a RadComboBox) when my RadGrid is leaving edit mode so I can post back the changed value to the server. The ...
0
votes
1answer
314 views

Update a controls viewstate on an AJAX callback

I update a rad combo control using telerik calllback method described here The items in the list are changed on the callback and I want to maintain this filtered list after the postback. Is it ...
0
votes
2answers
424 views

Telerik RadCombobox not keeping state when using client side requestItems() to load

I'm using the Telerik RadComboBox control. I have two related combos and when the user selects a value in the first one I filter the second one. I use the code below to achieve this: localeCombo = ...
0
votes
1answer
447 views

Updating the datalist in a RadComboBox

So I'm just struggling with a lot of little things in the web app so I'm checking up with all kinds of stuff to make sure i'm not breaking it cause of stupid problems. At some point in my web app ...
0
votes
1answer
140 views

jquery bind click event

I am having a problem with my code if (text.length < 1) { args.IsValid = false; $('#<% = cmdSaveRequest.ClientID()> %>').removeAttr('click'()); } ...

1 2