Currently, I have a RadGrid with dropdown list filtering on each column added to the grid programmatically.
Public Class GridDropdownFilterColumn : Inherits GridBoundColumn
....
Dim
_column As New Core.RadGrid.GridDropdownFilterColumn
...
InboxGrid.MasterTableView.Columns.Add(_column)
...
How can I change the dropdown list in one or more of my columns to contain checkboxes and have the grid filtered on the selected values?
I got the idea from the following example:
http://demos.telerik.com/aspnet-ajax/combobox/examples/functionality/templates/defaultcs.aspx

<telerik:RadAsyncUpload ID="ruFiles" runat="server" Skin="" ControlObjectsVisibility="None" DisablePlugins="true" OnClientFileUploaded="doFileUpload" OnClientFileSelected="showLoading" OnFileUploaded="rauFiles_FileUploaded" EnableFileInputSkinning="false" MaxFileSize="214748364" OnClientValidationFailed="OnClientValidationFailed" OnClientProgressUpdating="onClientFileUploading"> <Localization Select="" /> </telerik:RadAsyncUpload><requestFiltering> <!-- the posted content for normal pages should be less than 1 MB. File uploads are handled by the location attribute. --> <requestLimits maxAllowedContentLength="10485760" /> </requestFiltering><httpRuntime maxRequestLength="1073741824" requestValidationMode="2.0" />

function ChangeTextEditorFieldValue(sender, args) {
var elem = sender.get_element();
var attributedElem = document.getElementById(elem.id + '_text');
var fieldName = attributedElem.getAttribute('fieldCode');
var oldValue = args.get_oldValue();
var newValue = args.get_newValue();
var editor = GetFormEditor();
if (!oldValue) {
var newhtml = ReplaceAll(editor.get_html(true), "{" + fieldName + "}", "[" + newValue + "]");
editor.set_html(newhtml);
...
When i do this, RadEditor got focus but I want to set focus to ELEM (textbox i've change) like this :
elem.focus();
but focus stay on radeditor. Why ??? I'm on IE9


string templateColumnName = "Select One"; GridTemplateColumn templateColumn = new GridTemplateColumn(); templateColumn.ItemTemplate = new RadioButtonTemplate(templateColumnName); templateColumn.HeaderText = templateColumnName; this._RadGrid1.MasterTableView.Columns.Add(templateColumn);public class RadioButtonTemplate : ITemplate{ RadioButton radioButton; String columnName; public RadioButtonTemplate(String colName) { columnName = colName; } public void InstantiateIn(System.Web.UI.Control container) { radioButton = new RadioButton(); radioButton.ID = columnName; container.Controls.Add(radioButton); }}