I am working with Radgrid checklist filtering. Actually I need to filter “BAD IS SCORE”. This causes problem for me. And I can’t make EnableLinqExpressions as false. "bad is score" works fine. There is a problem with capital keywords.
Is there a way to filter with keywords like IS and without making EnableLinqExpressions as false?
I have a RadEditor in my page. I am getting the HTML text from Database. The text is the form of div inside div with hierarchy of 4 times. When I select any text and clicks on unordered or ordered list, bullet point is applying to the first line only.
But I want to use bullet points for selected text or for the selected paragraph.
Please suggest me any solution for this.
Thanks,
Anusha

Here is the entire contents of my aspx markup. There is nothing in the code-behind.
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Tom.aspx.vb" Inherits="POC_Tom" %><!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title>test</title></head><body> <form id="form1" runat="server"> <div> <asp:ScriptManager ID="smDemo" runat="server" ScriptMode="Release" /> <telerik:RadTabStrip runat="server" ID="tabTom"> <Tabs> <telerik:RadTab runat="server" Text="Paul"></telerik:RadTab> <telerik:RadTab runat="server" Text="George"></telerik:RadTab> <telerik:RadTab runat="server" Text="John"></telerik:RadTab> <telerik:RadTab runat="server" Text="Ringo"></telerik:RadTab> </Tabs> </telerik:RadTabStrip> </div> </form></body></html>
In IE 11, clicking the last tab shifts the contents of the control over 1 pixel and cuts off on the left. (The control renders properly in FireFox and Chrome.)
See the attached screenshot to see what I mean. Everything in hot-pink was added to the screenshot by me. Note the vertical line which shows the shift.

My JS stops functioning after I attempt to find out if a RadTextBox is empty.
01.<telerik:RadTextBox ID="rtbEmptyBox" runat="server" EmptyMessage="This box is empty." />02.<telerik:RadButton ID="rbtnDetermineIfEmpty" runat="server" Text="Determine if Empty" AutoPostBack="false" OnClientClicked="determineIfEmpty" />03. 04.function determineIfEmpty(sender, eventArgs) {05. var emptyBox = document.getElementById('<%=rtbEmptyBox.ClientID %>');06. 07. if (emptyBox.isEmpty()) {08. console.log('empty box is empty');09. }10. else {11. console.log('empty box is full');12. }13.}The JS stops at line 07 and won't proceed. Do I have the functionality of isEmpty() incorrect? I'm attempting to get the value of the text box, but when it is empty, it gives me the value of the EmptyMessage.

Hi,
I have the issue about the open CSV file for modify and save it when I have exported the file from RadGrid. The value will combine to all text in one column after save the related document in MS Excel application. Attached please see the screen capture as below and how to solve this problem?
Example:
I am binding a data source with below text and value field
DataTextField="FruitName"
DataValueField="FruitId"
on selection of fruits i can get selected item text as below but i am not able
to get selected item id.
AutoCompleteBox.Text
This is an issue, please let me know how to get selected item id.
It should provide id's for multiple selected items also.
--
Jagadish