I have a RadComboBox that gets populated on page_load() and is set w/ AutoPostback = "false" & EnableLoadOnDemand="false". When the user starts typing in the text area of the control, I don't want to find a match in the list until at least 3 characters have been entered. How can I accomplish this on the client side? Right now it finds a match for each character typed.
I am using a RadComboBox on my page and setting the Label property.
Everything looks fine in IE & Firefox, but Chrome is putting a carriage return after the Label. So instead of the ComboBox being to the right of the Label, it is showing up under it.
Is this a known issue with Chrome? How can I fix it?
I have a problem, i hope you can help me.
I am working with Radgrid and one gridTemplateColumn and when I clicked to a row I have to check row value and then change the image about the image button on this GridTemplateColumn, I'm using event ItemCommand and I don't Know how to change the image dynamycally.
How can I fill a web form with values from the database, based on the selected item of a RadTreeView (Telerik.Web.UI - ASP.NET AJAX ) ... must I do a Server Request of the page or can I do it with AJAX?
I am using RadGrid in VS2010 and populating it with JSON data from the clientside.
My page allows data entry in a traditional textfield manner and then assembles the data and performs an AJAX POST to store serverside. The page is then refreshed using a typical clientside JSON binding.
This all works well and I can have unlimted(?) number of json dataitems.
However, I need to reach inside and draw a dropdownbox for one of my cells/row.
This also works perfect until I reach the 12th row inside a foreach loop.
my javascript/clientside code is simple in that I have a loop with a counter.
inside the loop i use a RADGrid method (.getRowByIndex) to instantiate the client side object.
===============================================================================
var row = tableView._getRowByIndexOrItemIndexHierarchical(i);
===============================================================================
"i" is within the bounds of my array and the row object does actually get created but the "CHILDREN" count=0.
this should represent the number of cells for that row in which I would index into that collection and then do work on the cell in question.
Error handling prevents the page from crashing and when the grid refreshes it show 12 or more rows of data but I can not access the children for any rows past the 11th one (dataItems 1-11 all have the required dropdown box, 12 and on do not)