Hi,
I am using radgrid CHECKLIST filtering, and able to bind the data using FilterCheckListItemsRequested event. My radgrid has textBoxes inside the bound columns and user can enter the values and all the calculations are handled in client side. When filter icon is clicked, systems sends a CALLBACK request and filter list is not updated with latest values entered for the column. However, if there is any postback or partial postback happens, the list is updated with latest values.
I want to update the checklist filter listbox with items on callback. Is it possible to do this? Or is there any way to update the filter listbox on client side?
Regards,
Saikrishna

The single VCR buttons go foward or backward month by month, but the double VCR buttons go forward or backward 3 months at a time. Can RadDatePicker be configured to make the double VCR buttons go year-by-year? This is consistent with other javascript calendars.
Thanks.
hi
I use last telerik version .
in radGrid with batch mode I use OnBatchEditOpened client side. OnBatchEditOpened is fired for all column but when I update my telerik dll it isn't fired for the column they I set display false.
why ?
Hello,
I've used the resizeToFit() function to re-size my columns in the following function:
function pageLoad() {
var grid = $find('<%= RadGrid2.ClientID %>');
var master = grid.get_masterTableView();
var columns = master.get_columns();
for (var i = 0; i < columns.length; i++) {
columns[i].resizeToFit();
}
}
Which works very well - however after the re-size I'm left with a ton of white space to the right of my newly sized columns. I know this is cause in part by having static headers however I need to keep the static headers.
So is there a work around to keep the static headers and still re-size the RadGrid to fit the new column size?
hello
is there a way to localize the button "Apply" and "Cancel" and the checkbox "Check All" in a grid with CheckList Filtering enabled?
thank you

I need to add a custom radio button control that I created based on an if condition to my GridView. My radiobutton will be enabled or disabled based on this condition and will have the text changed as well.I'm trying to figure out how to add a radiobutton object into my data row instead of a stringdt.Columns.Add("FirstName").
<telerik:RadGrid runat="server" ID="grd1" OnNeedDataSource="grd1_NeedDataSource"> <MasterTableView AutoGenerateColumns="False"><Columns><telerik:GridTemplateColumn HeaderText="Radiobutton header" UniqueName="col1"><ItemTemplate><asp:RadioButton ID="rbType" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "rbEnableorDisable")%>' /></ItemTemplate></telerik:GridTemplateColumn><telerik:GridTemplateColumn HeaderText="FirstName header" UniqueName="col2"><ItemTemplate><asp:Label Text='<%# DataBinder.Eval(Container.DataItem, "Name")%>' runat="server" /></ItemTemplate></telerik:GridTemplateColumn></Columns></MasterTableView></telerik:RadGrid>Codebehind
dt= New DataTabledt.Columns.Add("rbEnableorDisable")dt.Columns.Add("FirstName")Dim rb As RadioButtonrb = New RadioButtonFor each item in itemlist //some data iteration declared elsewheredr = dt.NewRow()If (Condition)rb.Text = "Should be Disabled"rb.Enabled = FalseElserb.Text = "Should be Enabled"rb.Enabled = TrueEnd ifdr.Item("FirstName") = item.FirstNamedr.Item("rbEnableOrDisable") = rb//?Code for inserting a radio button objectdt.Rows.Add(dr)NextWith grd1.DataSource = dt.DataBind()End WithSo far with this code I am only able to display the radiobutton text if i havedr.Item("rbEnableOrDisable") = rb.Text.I need to display the whole radiobutton object(show the text and if it's enabled or disabled among others)I triedLocationData.Columns.Add(New DataColumn("rbType", GetType(RadioButton)))but it seems I need to append to the ItemTemplateAlso tried adding the whole column dynamic with:grd1.Controls.Add(rb)



I have an application page with 2 RadEditors on it.
People enter content in one of the two and by clicking a button they submit the content to a Note field in SharePoint 2010( which is rich text, not enhanced rich text). Submission is done via C# custom code.
My issue is that when I try to set the value of the field font name, font size, underline, font color and back color are stripped down in the field. My guess is that the field does not accept XHtml (correct my if I am wrong) so when I try to set the field value with the content :
<span style="font-family: Arial; font-size: 48px;"><strong><em><span style="background-color: #ffff00; color: #ff0000; text-decoration: underline;">test</span></em></strong></span> which comes from RadEditor, some of these value do not get converted to something like:
<font style="background-color:#ffff00" color="#ff0000" size="7" face="Arial"><strong><em><u>Anisia 567</u></em></strong></font> that the field is expecting.
This behavior is occuring with both of my RadEditors.
The configuration of editor is as follows:
<telerik:RadEditor runat="server" ID="TextBoxRich" EmptyMessage="msg1" Height="67px" Width="100%" BackColor="#dae4f1" CssClass="noteTextBox" BorderColor="Black" ToolTip="msg2">
<Tools>
<telerik:EditorToolGroup>
<telerik:EditorTool Name="FontName"/>
<telerik:EditorTool Name="FontSize"/>
<telerik:EditorTool Name="Bold"/>
<telerik:EditorTool Name="Italic"/>
<telerik:EditorTool Name="Underline"/>
<telerik:EditorTool Name="JustifyLeft"/>
<telerik:EditorTool Name="JustifyCenter"/>
<telerik:EditorTool Name="JustifyRight"/>
<telerik:EditorTool Name="InsertOrderedList"/>
<telerik:EditorTool Name="InsertUnorderedList"/>
<telerik:EditorTool Name="Outdent"/>
<telerik:EditorTool Name="Indent"/>
<telerik:EditorTool Name="ForeColor"/>
<telerik:EditorTool Name="BackColor"/>
</telerik:EditorToolGroup>
</Tools>
</telerik:RadEditor>
and in ShaPoint I set the value as follows:
SPFieldMultiLineText field = (SPFieldMultiLineText)Item.Fields["Note"];
field.ParseAndSetValue(newItem, TextBoxRich.Content);
Any suggestion is greatly appreciated.
Thank you.
Best regards,
Anisia Pop