Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
76 views
Hi the Telerik team

I Would like to know when you plan to stop supporting IE6.
Now, arround me, every body uses IE7, IE8 or FF. Don't know how this is in the world but at this time i think / hope that most of people abandon it.

Actualy i work with q3 2007, and one day i will get a new version, but the abandon of IE6 will be an important thing in my decision to get a new version.

You, the Telerik team, have to provide a more complex code, patches etc etc... cause of IE6 !
The suite will be more robust, more optimized without this support.

Keep the good work
Fred
Ivo
Telerik team
 answered on 26 Oct 2009
1 answer
30 views
Does the RadEditor File manager have a function that allows the user to search for a file name?

We have  user that manages over 500 files and a search function would be very time saving!

Many thanks

Ben
Rumen
Telerik team
 answered on 26 Oct 2009
1 answer
126 views
Hello,

How could I get a tooltip to show up (that should be loaded using the OnAjaxUpdate event) in a usercontrol?

Because when I only use the TooltipManager in a usercontrol, it's all fine, but the moment I add this usercontrol to the RadAjaxManager

<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"
        <AjaxSettings> 
            <telerik:AjaxSetting AjaxControlID="ctl"
                <UpdatedControls> 
                    <telerik:AjaxUpdatedControl ControlID="ctl" /> 
                </UpdatedControls> 
            </telerik:AjaxSetting> 
        </AjaxSettings> 
        </telerik:RadAjaxManager> 

I get the effect that the tooltip is trying to open but it gets closed after it finishes it's AJAX call, btw the updatepanel wrapping the UserControl is in 'Conditional' updatemode.

Greetings
Svetlina Anati
Telerik team
 answered on 26 Oct 2009
4 answers
224 views
I've been trying many different ways to successfully add a tab dynamically to a tabstrip on a parent page from a radwindow.  I will have many RadWindows open from a 1st tabstrip and shown / hidden from that tabstrip.  The first tabstrip will only show the Lists of records in those RadWindows.

I have a 2nd tabstrip that is VerticalLeft that when a user clicks on a record from one of the 1st tabstrip RadWindows, code will execute via JS to 1. Open a new RadWindow showing the details of the record the user selected. and 2. Add a new tab to the 2nd tabstrip on the parent page that will control the showing of the new RadWindows with the details.

I've tried to use the following code, but it errors out on the: var tab = new Telerik.Web.UI.RadTab(); and says: "Object doesn't support this property or method"
                var tabStrip = GetRadWindow().BrowserWindow.OpenItems;
                var tab = Telerik.Web.UI.RadTab();
                tab.set_text("Case: " + id);
                tabStrip.add(tab);

I've tried to use the following code, but it errors out as well saying "No Such Interface Supported".
                GetRadWindow().BrowserWindow().addTab("Testing");

I'm using the following version: 2008, 3, 1314, 20

These should both work as they are spelled out as methods to use to achieve this in the support forums and documentation.  What am I missing?  It's got to be something basic that I'm just not seeing.
Thanks
Ken
Poul Henningsen
Top achievements
Rank 1
 answered on 26 Oct 2009
2 answers
140 views
Hello,

I'm using version 2009.1.311.20 and IE 8. The following does not resize the filter textbox width for any of the filter items. If I switch to compatability mode the textboxes are resized, but the layout of the page is messed up. Here is the RadGrid definition and the event code.

Thanks,
Casey

RadGrid:
<telerik:RadGrid ID="RadGrid1" runat="server" AutoGenerateColumns="False"   
                 GridLines="None" Skin="Office2007"   
                 DataSourceID="SqlDataSource1" oninit="RadGrid1_Init"   
                 onitemcreated="RadGrid1_ItemCreated">  
    <MasterTableView CellSpacing="-1" DataSourceID="SqlDataSource1">  
            <CommandItemSettings RefreshText="" /> 
        <Columns> 
            <telerik:GridBoundColumn UniqueName="column5"   
            DataField="REQUESTOR_ID" Visible="false" Display="false">  
            </telerik:GridBoundColumn> 
            <telerik:GridBoundColumn HeaderText="Requestor" UniqueName="column"   
            DataField="REQUESTOR">  
            </telerik:GridBoundColumn> 
            <telerik:GridBoundColumn HeaderText="Requested Person"  UniqueName="column1"   
            DataField="REQUESTED_PERSON">  
            </telerik:GridBoundColumn> 
            <telerik:GridBoundColumn HeaderText="Personal Information System" UniqueName="column3" 
            DataField="DESCRIPTION">              
            </telerik:GridBoundColumn> 
            <telerik:GridDateTimeColumn HeaderText="Date/Time" UniqueName="column4"   
            DataField="DATE_REQUESTED">  
            </telerik:GridDateTimeColumn> 
        </Columns> 
    </MasterTableView> 
</telerik:RadGrid> 

Event Code:
protected void RadGrid1_ItemCreated(object sender, GridItemEventArgs e)  
    {  
        if (e.Item is GridFilteringItem)  
        {  
            GridFilteringItem filteringItem = e.Item as GridFilteringItem;  
            //set dimensions for the filter textbox  
            TextBox box = filteringItem["column"].Controls[0] as TextBox;  
            box.Width = Unit.Pixel(75);  
            TextBox box1 = filteringItem["column1"].Controls[0] as TextBox;  
            box1.Width = Unit.Pixel(100);  
            TextBox box2 = filteringItem["column3"].Controls[0] as TextBox;  
            box2.Width = Unit.Pixel(200);  
            RadDatePicker box3 = filteringItem["column4"].Controls[0] as RadDatePicker;  
            box3.Width = Unit.Pixel(100);  
        }  
    }  
    protected void RadGrid1_Init(object sender, EventArgs e)  
    {  
        GridFilterMenu menu = RadGrid1.FilterMenu;  
        int i = 0;  
        while (i < menu.Items.Count)  
        {  
            if (menu.Items[i].Text == "NoFilter" ||  
               menu.Items[i].Text == "Contains" ||  
               menu.Items[i].Text == "EqualTo" ||  
               menu.Items[i].Text == "GreaterThan" ||  
               menu.Items[i].Text == "LessThan")  
            {  
                i++;  
            }  
            else 
            {  
                menu.Items.RemoveAt(i);  
            }  
        }  
 
    } 
Pavel
Telerik team
 answered on 26 Oct 2009
1 answer
58 views
Is there a web application project (WAP) version of the live demos sample?
Ivo
Telerik team
 answered on 26 Oct 2009
3 answers
152 views
Hello,

I have the radeditor deploy on my website (WSS3). The image picker work in IE and FireFox but the hyperlink button does nothink!

What can I do?

Thanks in advance

Ben
Stanimir
Telerik team
 answered on 26 Oct 2009
1 answer
110 views
The title of the post says it all.  How about, in addition to Silverlight controls/code being compatible with WPF in Telerik's suite, something totally crazy....

Silverlight/ASP.Net Ajax/WPF compatibility?  Puhhlease?
Ivo
Telerik team
 answered on 26 Oct 2009
1 answer
95 views
Hi,
I am using  a lienced version of telerik controls.

I am using a User Control Edit Form in RADGrid, this loads a Usercontorl with a radgrid in it.(inside the usercontrol).

In the usercontorol grid i am trying to add a image button for delete option using GridButtonColumn.
It works fine with a link button, but when we use a image button it throws following error.

Line: 6
Error: Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 500


Please let me know who to go about this.
Any help  on this will be great.


Regards,
Princy
Top achievements
Rank 2
 answered on 26 Oct 2009
1 answer
153 views
I have two GridDropDownColumn that resides in my RadGrid. When i select an item in the first one i wantto dislay related item in the second one over the same ID that is stored on both GridDropDownColumn 's DataField and ListValueField property.

And here are my GridDropDownColumns:

<telerik:GridDropDownColumn DataField="HizmetId" DataSourceID="LLBLGenProDataSourceHizmet" 
                        HeaderText="Hizmet Adı" ListTextField="HizmetAdi" ListValueField="HizmetId" 
                        UniqueName="HizmetId" ColumnEditorID="GridDropDownColumnEditor1"  > 
                    <ItemStyle Width="400px"></ItemStyle> 
                    </telerik:GridDropDownColumn> 
       
    
      <telerik:GridDropDownColumn DataField="HizmetId" DataSourceID="LLBLGenProDataSourceHizmet" 
                        HeaderText="Tutarı" ListTextField="Tutar" ListValueField="HizmetId" 
                        UniqueName="TutarGoster" ColumnEditorID="GridDropDownColumnEditor2"  ReadOnly = "true"
                    <ItemStyle Width="400px"></ItemStyle> 
                    </telerik:GridDropDownColumn> 

When i select a service from the first GridDropDownColumn i wantto display the price of it in the second one.
Yavor
Telerik team
 answered on 26 Oct 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?