Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
175 views
Hi,

        I just want to set the focus of a RadTextbox, on change of RadCombobox. I've a  master page in which all the Pages are inherited. Can any one help me in this please.

Thanks,
Jayashree.S
Jayashree
Top achievements
Rank 1
 answered on 10 Jul 2009
3 answers
282 views
Hi,

After updating from 2009.1 527 to 2009.2 701 I apparantly broke my build on the server.

I Installed the new verision on my local computer. Deleted the reference to the old Telerik.Web.UI.DLL and the made a new reference to the new DLL.

After that I compiled my project and then updated the project on the server. Thats all. After that the app on the server now gives me the error below here.
I need to say that updating the server means putting up my ascx controls and the DLL's. I have not touched the aspx and web.config on the server. They are somewhat different than those locally.

The app is running perfectly locally. So how can it suddenly be missing System.Web.Extensions?


Server Error in '/' Application.

Parser Error

Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.

Parser Error Message: Unable to create type 'telerik:RadScriptManager'. Could not load file or assembly 'System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.

Source Error:

Line 18: <body>
Line 19:   <form id="form1" runat="server">
Line 20:   <telerik:RadScriptManager runat="server" ID="RadScriptManager1" />
Line 21:   <telerik:radajaxmanager runat="Server" id="RadAjaxManager1">
Line 22:     <AjaxSettings>

Source File: /hourkid.aspx    Line: 20


Version Information: Microsoft .NET Framework Version:2.0.50727.3082; ASP.NET Version:2.0.50727.3082
T. Tsonev
Telerik team
 answered on 10 Jul 2009
3 answers
122 views
Hi, I am coming thought a difficult problem to have Grid in IFrame
All none-current frame grid rendered as display=false i guess, and header coloumn are not streached correctly.

I have found the following article regarding render column when column's hidden
http://www.telerik.com/help/aspnet/grid/gridautostretchwithcolumnwithdisplayfalse.html
but i have failed to implement this in Ajax Grid, can you help me, thank you!
(otherwise i would of sending off a ticket, our company will purchase telerik bundle this week :)
Veli
Telerik team
 answered on 10 Jul 2009
3 answers
152 views
Hi

I would like to add a delete button on AdvancedEditForm of the Scheduler. I have update and cancel buttons on the form now and they work nicely. But I would like to add delete there, so I could delete the appointment being edited and then return back to the calendar view. How should I do it so it would have the same functionality as clicking the red 'x' on an appointment from the calendar view? It should display the confirmation dialog and take care of the recurrent appointment deletion and so on.

Mikko
Veselin Vasilev
Telerik team
 answered on 10 Jul 2009
1 answer
109 views
Hi,

Which step I should do in order to keep the same skin for the chart as I select scroll option?  And when I select scroll option, I have 7 figures on the series, it shows each figure once each time, I set the width for the chart is 600.  I guess it should be in the first view.  Unless, there are more figures which can not be view in the set width then it should apply the scroll.  Did I miss some steps to set up the scroll option? 

Regards,

Duy
Giuseppe
Telerik team
 answered on 10 Jul 2009
2 answers
90 views
I need to get a count of all items each time a group changes, for example:

year 2008: 100
  month January 3
  record 1
  record 2
  record 3
  month February 5
  record 4
  record 5
  record 6
  record 7
  record 8

etc
I have this code, but it only gets the group header having children records, and not the top level (year)

 foreach (GridGroupHeaderItem groupHeader in rgTickets.MasterTableView.GetItems(GridItemType.GroupHeader))
            {

                Created = Closed = 0;
                GridItem[] children = groupHeader.GetChildItems();
                try
                {
                    foreach (GridItem child in children)
                    {
                        GridDataItem dataItem = child as GridDataItem;
                        Created += Convert.ToInt32(dataItem["Created"].Text);
                        Closed += Convert.ToInt32(dataItem["Closed"].Text);
                    }

                    // strCount = children.Sum(n => Convert.ToInt32(n.Cells[5].Text));
                    groupHeader.DataCell.Text += "&nbsp;&nbsp;&nbsp;&nbsp;Created:&nbsp;&nbsp;" + Created.ToString();
                    groupHeader.DataCell.Text += "&nbsp;&nbsp;&nbsp;&nbsp;Closed:&nbsp;&nbsp;" + Closed.ToString();

                }
                catch (Exception ex)
                {

 

                }
              

            }





Zed
Top achievements
Rank 1
 answered on 10 Jul 2009
1 answer
90 views
I have a Grid (Q2 2009) where I am assigning a datarouce in Page Load. If I select Page 2 through n it brings up a blank grid. Also, if I select anything from the Page Size menu it wipes out the selection.

Never mind. I realize I need to rebind the datasource
Yavor
Telerik team
 answered on 10 Jul 2009
3 answers
163 views
Hi guys,

it seems that the scheduler have a little display bug. When you want to pick a date by the calendar, if the month have six rows (ex: may 2009), the bottom border is not shown. I've tested it in our pages and in your demos in IE8 and FF3 with different skins and it's always doing the same.

I have the latest version of your controls (asp.net Ajax 2009.2 701).

Not a big problem, but should be corrected in next version.

Continue your good work !!
Kamen Bundev
Telerik team
 answered on 10 Jul 2009
1 answer
103 views
I have a RadChart on a user control and I'm trying to determine how best to use the built in skins and set properties overtop of this.  I am basically giving the user an option to pick from available skins and apply to a chart.  This works fine as long as I set the SkinsOverrideStyles to True.  The problem I ran into is that certain properties don't stick when I set them on the chart instance. For example, I am trying to set the PointMark to show on a Line Chart.  When SkinsOverrideStyles is false, it works but not all of my Skin settings are shown.  When I set SkinsOverrideStyles to true, the chart gets settings from skin but other props (ie PointMark) are ignored.  I realize this is because it is getting the styles from the skin (when true) or the page (when false). 

What should I be doing here? How can I get the best of both worlds?  Apply the skin and then let me set the other props as needed. 

Thanks.
Ves
Telerik team
 answered on 10 Jul 2009
4 answers
191 views
Is there a way to define the ImageUrl property of the menu depending on the selected theme?

..   ImageUrl

="Images/16x16/Activity.gif">  
doesn't get the image from the theme folder and defining the path as "~/App_Themes/MSCRM12/Images/Activity.gif" isn't the best way.

I would like to use them as 'global images' and not specific to a control (like themeing of a control).

Thanks
Eric

Jon
Top achievements
Rank 1
 answered on 10 Jul 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?