I'm looking for help on using the radgrid checkbox filtering. Everything is working good but I would like to get the value of what is checked when I export my grid to PDF. I want to include these values in the header in the PDF. I tried using:
string str2 = RadGrid1.MasterTableView.Columns.FindByUniqueName("mycolumn").CurrentFilterValue;
but this just returned an empty string.
hi
How do I prevent any insert, edit and delete which is less than current date and time?
Thanks a lot



if (e.Item is TreeListDataItem)
{
TreeListDataItem item = e.Item as TreeListDataItem;
item[
"Description"].Text = "<a href=\"#\">" + 0512 + "</a>";
int j = 0;
}
My problem is to set hyper link for 0512 .I mean an underline is shown below the code 0512.
But blue colour is not appearing in the 0512 .hyperlinks shows blue colour text normally.
But here is not display 0512 in blue colour.how is it possible?
Thanks
Sindu

I'm trying to populate a RadComboBox but I'm getting this error and I don't know why.
My RadComboBox:
<telerik:RadComboBox ID="regTypeComboBox" runat="server" Width="305" Skin="Telerik" OnClientLoad="OnClientLoadHandler" />
My js:
function OnClientLoadHandler(sender) {
var combo;
combo = sender;
var serviceUrl = "myUrl";
var paramData = {
};
$.ajax({
type: 'GET',
url: serviceUrl,
contentType: 'application/json; charset=utf-8',
crossDomain: true,
data: JSON.stringify(paramData),
dataType: 'json',
success: function (response) {
var listData = response.listData;
$.each(listData, function (index, element) {
var name, id;
name = element.NAME;
id = element.ID;
var comboItem = new Telerik.Web.UI.RadComboBoxItem();
comboItem.set_text(name); // --> SyntaxError: illegal character
//comboItem.set_text("name"); // --> also SyntaxError: illegal character
//comboItem.set_text(""); // --> also SyntaxError: illegal character
});
},
error: function () {
alert("error");
}
});
}
It is pretty simple, but I don't know why it gives this error.
Any ideas? Thanks

Hi All:
How to set the RadGrid command line background color? I am using the MetroTouch and I do not like the black header. I've tried the following:
.RadGrid_MetroTouch thead { background-color: #25a0da;}Phil

Hi,
It is possible to drag and drop nodes from one radtreeview to other but no having the ability to do the reverse. furthermore i want to have the possibility to drag and drop between nodes just in the other radtreeview.
Example : RadTreeView1 -> just possibility to drag and drop in Radtreeview2
