Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
95 views

if i have a few nodes expanded if the page is refreshed they all collape.  How do you keep the nodes you have expanded open after a refresh or a page change?
Shinu
Top achievements
Rank 2
 answered on 03 Apr 2009
2 answers
79 views
Hi,

I use Q2009. On my form, I have a TadStrip with tab letters (A to Z)


Since Q2009 the vista (& others) skin tab seems to be larger than Q2008

Because I don't know CSS and how to modify it. (I tryed to edit skins\vista\tabstrip.vista.css without any success)
Can you tell me a sympli way to reduce the width of the tab.

I think there is to way to do it
- With a smaller font
- By deleting the rigth and left padding (if there is padding)
- may be another one ?

How to do this ? and where ?

Thanks
Filleau
Top achievements
Rank 1
 answered on 03 Apr 2009
1 answer
83 views
Hi Guys,

Why do I get this error...is it my version ?? Q2 2008.
Have tried to update my controls ex Hotfix and zip, but ...days of frustration, and old online  help ...RadControls folder structure is very different from that of the zip and/or Hotfix downloads.

TIA
Neal
Sebastian
Telerik team
 answered on 03 Apr 2009
1 answer
117 views

Hello Telerik!

I have use RadControls for ASP.NET AJAX 2008 3 1314

In my project I use custom editors in RadGrid. Everything works fine while I don't use custom editor for GridDropDownColumn. For this column type, custom editor doesn't work properlly when EnableEmptyListItem = true.

In this case column try to convert my custom editor to GridDropDownListColumnEditor (instead of GridDropDownColumnEditor).

See your code (method GridDropDownColumn.OnDataBindColumn())

if (this.EnableEmptyListItem)  
  {  
    if (this.DropDownControlType == GridDropDownColumnControlType.RadComboBox)  
    {  
      if (((GridDropDownListColumnEditor) this.DropDownListEditor).ComboBoxControl.FindItemByValue(this.EmptyListItemValue) == null)  
      {  
        RadComboBoxItem item3 = new RadComboBoxItem(this.EmptyListItemText, this.EmptyListItemValue);  
        ((GridDropDownListColumnEditor) this.DropDownListEditor).ComboBoxControl.Items.Insert(0, item3);  
      }  
    }  
    else if (((GridDropDownListColumnEditor) this.DropDownListEditor).DropDownListControl.Items.FindByValue(this.EmptyListItemValue) == null)  
    {  
      ListItem item5 = new ListItem(this.EmptyListItemText, this.EmptyListItemValue);  
      ((GridDropDownListColumnEditor) this.DropDownListEditor).DropDownListControl.Items.Insert(0, item5);  
    }  
  } 

In latest realse situation the same. Please fix it or explain how can I use custom editor with GridDropDownColumn and use EnableEmptyListItem property. 

Tsvetoslav
Telerik team
 answered on 03 Apr 2009
1 answer
162 views
Hello,
We have a RadNumericTextBox place inside a dynamic repeater control. We get an javascipt error:
this.TextBoxElement is null
in the ScriptResource.axd file. On removing the RadNumericTextBox control the error gets removed.

What could be the reason for this error and how to solve it?
Sebastian
Telerik team
 answered on 03 Apr 2009
4 answers
520 views

Using 2008.Q3 skins with 2009.Q1 Release : RadComboBox

The official Q3 skins for RadComboBox are attached to this post (Q3-Skins-RadComboBox.zip).

The same instructions can also be applied for custom skins (since the RadComboBox did not change its CSS class names).

There are two ways of using the attached skins (SkinName is the skin that you want to use):

ASP.NET Themes

This method is useful if you need to use the skin for all controls of a specific type in the whole web application.

You need to:

                1. change the <pages> declaration in your web.config to <pages theme="SkinName"> e.g.
                               <pages theme=
"Gray">

                2. add the following lines to the <appSettings> section of your web.config:

                                <add key="Telerik.EnableEmbeddedSkins" value="false" />

                               <add key="Telerik.Skin" value="SkinName"/>
                      e.g.

                               <add key="Telerik.Skin" value="Gray"/>

                3. create an ASP.NET Theme, named SkinName and add the following all files and folders from the Q3-Skins-RadComboBox archive:

Skins/SkinName/*
e.g.
Skins/Gray/ComboBox.Gray.css
Skins/Gray/ComboBox/*.*

                              

A sample project, demonstrating this method, is attached to this post (Q3-Skins-ASPNETThemes-RadComboBox.zip).

Direct skin registration

This method is useful if you have fewer instances of RadComboBox.

You need to:

                1. set the Skin property accordingly

                2. set the EnableEmbeddedSkins property to false

                3. register the skin file using the following CSS:

                    <link rel="stylesheet" type="text/css" href="~/Skins/SkinName/ComboBox.SkinName.css" runat="server" />
                 e.g.

                    <link rel="stylesheet" type="text/css" href="~/Skins/Gray/ComboBox. Gray.css" runat="server" />

A sample project, demonstrating this method, is attached to this post (Q3-Skins-DirectSkinRegistration-RadComboBox.zip).
Yana
Telerik team
 answered on 03 Apr 2009
1 answer
105 views
I'm using the scheduler for a webproject, which contains bookings for resources (employees). The resources are grouped by date. The problem is that there are a lot of resources, but not all of them works all dates. What I want to do is, when in the week view, hide the columns for resources that are not working certain days. Showing all the resources all the time takes up a lot of width and is harder to overview than just showing the resources for the days they actually work.

This is what I want to achieve:
http://img5.imageshack.us/img5/2805/radscheduleresources.jpg

In my example picture I show 5 resources the first day, but only 3 the other.
Genady Sergeev
Telerik team
 answered on 03 Apr 2009
0 answers
64 views
Hi All, i am having a slight problem, i am using the drag & drop from a radGrid to a radScheduler, i have many controls on the page, the problem is that when i drag & drop an item on the radScheduler sometimes the item gets placed and other times it doesnt, is it because i have too many controls for the page to postback properly or is there something else wrong?
Marc Plaxton-Harrison
Top achievements
Rank 1
 asked on 03 Apr 2009
0 answers
122 views
Hello, on the code behind of a page I am doing this:
RadComboBoxTheme = ThemeHelper.LoadThemes(); // Load Themes
After this line is executed, the RadComboBoxTheme has items, however they are not displayed on the list.
Do I need to do anything else to make this work?

public static RadComboBox LoadThemes()
    {
        RadComboBox box = new RadComboBox();
        // Load Themes
        ThemeCollection themeCol = new ThemeCollection().Load();
        themeCol.Sort(TS.Common.Objects.Theme.Columns.Title, true);

        RadComboBoxItem item;
        foreach (Theme theme in themeCol)
        {
            item = new RadComboBoxItem();
            item.ImageUrl = string.Format("../images/Theme/Small/{0}.jpg", theme.Title);
            item.Text = theme.Title;
            item.Value = theme.Id.ToString();
            box.Items.Add(item);
        }
        return box;
    }


Aron
Top achievements
Rank 2
 asked on 03 Apr 2009
5 answers
125 views
Hi There,

I am working on telerik. In which i have facilitate with virtual loading. I am having nearly 20 page. The page size i have provided is 35. And the problem I am facing is whenever "i will click the scrollbar once it takes you to the next "page" and it is skipping the display of mutiple entires. I want, The "page" size needs to be however many entires are currently displayed or however it need to be coded to not skip entries". Can anybody help me to how to come out of this problem...???

Regards:
Vimal Kumar Srivastava
Madhepura, Bihar
Email Id: vimaltech04@gmail.com
 
Vimal Kumar
Top achievements
Rank 1
 answered on 03 Apr 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?