Telerik Forums
UI for ASP.NET AJAX Forum
0 answers
150 views

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

KRANTHI
Top achievements
Rank 1
 asked on 07 Mar 2017
8 answers
519 views
I have been searching around about this issue and I found some related information but I just can't seem to get Telerik's Captcha to work properly.

No matter what I do, without fail the captcha will only validate on the second try. On the first try, it fails, and the second time it always works.

I do not use a web farm or cluster, it's just one server. I've tried most things that are documented, like changing the ImageStorageLocation to Session. The behavior is the same either way.

Anyone have any ideas?
Greg
Top achievements
Rank 1
 answered on 07 Mar 2017
3 answers
257 views

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!

Samuel
Top achievements
Rank 1
 answered on 07 Mar 2017
1 answer
208 views

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

Marin Bratanov
Telerik team
 answered on 07 Mar 2017
1 answer
175 views
I have 5 buttons using bootstrap css.
they are used as filters for the grid.
what is a good way to highlight the current filtered button used?
I can set enabled = false but that just slightly dims the button and is not enough to make it stand out.
Marin Bratanov
Telerik team
 answered on 07 Mar 2017
1 answer
88 views

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

 

Vessy
Telerik team
 answered on 07 Mar 2017
0 answers
129 views

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.

 

Magnus
Top achievements
Rank 2
 asked on 07 Mar 2017
0 answers
107 views

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.

Ravi
Top achievements
Rank 1
 asked on 07 Mar 2017
3 answers
152 views
Hi, 
I am trying to get cell value in javascript and is working fine with IE but not with Firefox (7.0.1).
On error console 

Error: Components.classes['@mozilla.org/extensions/manager;1'] is undefined
Source File: chrome://jqs/content/overlay.js

Error: masterTable.getCellByColumnUniqueName(masterTable.get_dataItems()[row], "Detail").all is undefined


Here is Template for Grid
       <telerik:GridTemplateColumn UniqueName="Detail" HeaderText="Detail" HeaderStyle-Width="245"
                                        ItemStyle-Width="245">
                                        <ItemTemplate>
                                            <asp:TextBox ID="txtDetail" CssClass="textfield" Width="245" Text='<%#Eval("Detail") %>'
                                                MaxLength="100" runat="server"></asp:TextBox>
                                        </ItemTemplate>
                                    </telerik:GridTemplateColumn>



My JavaScript code is:- 
 var master = $find("<%=gvCommunication.ClientID %>").get_masterTableView();
            var row = master.get_dataItems()[0];          
            alert(master.getCellByColumnUniqueName(row, "Detail").all[0].value);

Its working fine up to getting row but in getting cell value it shows error. Here I would like to mention also 'debugger;' not working while I'm working in debug mode. Is there something wrong with firefox settings.

Please help.

Thanks,
Sanjiv



Ravi
Top achievements
Rank 1
 answered on 07 Mar 2017
0 answers
121 views

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?

Boris
Top achievements
Rank 1
 asked on 06 Mar 2017
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?