I have used rad date picker in one of our web page.It is rendering perfectly.
but when set the compatablility setting of IE11. total control display is changed.
<telerik:RadDatePicker RenderMode="Lightweight" ID="rdFrmInspDate" Width="135px" runat="server" Height="20px" DateInput-Label=" " MinDate="" Skin="Web20"></telerik:RadDatePicker>
Please find screen shot for reference
Hi Telerik!
I am currently developping a responsive grid and I am having issues with hidding some columns when the display screen is small.
I am successfully hidding the columns using same @media CSS, but even if the columns are not displayed they still occupy some place in the table.
I have 4 columns. There is no size specified for the first one since I want it to adjust to the available space. I have column 2 and 3 that I want to hide on small screen devices and I want column 4 to display all the time, 100px wide.
I am doing the following :
I have 4 columns with the following configurations :
<telerik:GridTemplateColumn HeaderText="Documents" HeaderStyle-CssClass="docCol" ItemStyle-CssClass="docCol" AllowFiltering="false">
<HeaderStyle CssClass="docCol" />
<ItemStyle CssClass="docCol" />
<ItemTemplate>
bla bla bla
</ItemTemplate>
</telerik:GridTemplateColumn>
<telerik:GridTemplateColumn HeaderText="Type" HeaderStyle-CssClass="typeCol" ItemStyle-CssClass="typeCol" AllowFiltering="false">
<HeaderStyle CssClass="typeCol" />
<ItemStyle CssClass="typeCol" />
<ItemTemplate>
bla bla bla
</ItemTemplate>
</telerik:GridTemplateColumn>
<telerik:GridTemplateColumn HeaderText="Category" HeaderStyle-CssClass="CategoryCol" ItemStyle-CssClass="CategoryCol" AllowFiltering="false">
<HeaderStyle CssClass="CategoryCol" />
<ItemStyle CssClass="CategoryCol" />
<ItemTemplate>
bla bla bla
</ItemTemplate>
</telerik:GridTemplateColumn>
<telerik:GridTemplateColumn HeaderText="Date" HeaderStyle-CssClass="dateCol" ItemStyle-CssClass="dateCol" AllowFiltering="false">
<HeaderStyle CssClass="dateCol" />
<ItemStyle CssClass="dateCol" />
<ItemTemplate>
bla bla bla
</ItemTemplate>
</telerik:GridTemplateColumn>
The CSS code is the following
@media (max-width: 450px)
{
.dd_client
{
width:180px !important;
}
.hidden-xs
{
display: none !important;
}
.docCol
{
min-width: 100px;
}
.typeCol
{
display: none !important;
}
.categoryCol
{
display: none !important;
}
.dateCol
{
width:100px;
}
}
What am I doing wrong. Please note that if I use "Display=False" then I don't have any display issues, but it isn't responsive anymore because the columns will always be hidden.
I attached a picture to show you what it looks like.
Thanks for your help!
Hi,
I'm using in an Asp application the DropDownTree web control.
According to your documentation, I wrote the following code :
function SelectNode(datakeyValue){ var combo = $find("<%= RadDropDownTree.ClientID %>"); var itm = combo.findItemByValue(dataKeyValue); itm.select(); itm.set_checked(true);}
However, IE displays an error message which says that the method « findItemByValue » is not found.
Thanks for your help,
Regards
I created an isolated project using this code
http://demos.telerik.com/aspnet-ajax/htmlchart/examples/charttypes/linechart/defaultcs.aspx?show-source=true
when I am using 2015 telerik dlls it works fine
but when I use latest dlls (2017 1st qtr release) Backcolor of plot area changes when cursor is on marker
Plase advise.
Thanks in advance

Hello,
I have a radgrid with 10 columns with numeric values. I want to apply some filters with comboboxes or custom filter in filtertemplate where I can compare any of these columns with another.
Basically I want to be able to compare and see all rows where value of column2 is less than value of column4 or whatever columns I choose. Have anyone else here done this before and would be willing to share how to do it? I have been looking through the demo's and the forum but not found anything similar.
I am getting error MasterTable.getCellByColumnUniqueName(...).innerText is Undefined when i m getting the value using the javascript.
when i am using Firefox latest version this occurs, but when i m using the Internet explore this occurs doesn't occurs. i also change the version of firefox but still this is not working.
I saw the other older thread regarding the same prblm but there is no solution i found.
I am attaching the Screenshot.
I've been trying to upgrade the style of my relatively old Telerik ASP.Net app and something odd has happened.
The program uses RadWindow popups and I've just noticed that the header appearance of the popups has changed.
As far as the actual RadWindow call is concerned, I have not changed anything, a simple window.radopen in all cases.
Image attached.
Suggestions?