Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
82 views
What do I use to reduce the header style/height of the progress area?
All the skins have a large header bar across the top of the progress area.
I believe it is using a couple of "tall" .gif images to create the hearder?
What part of the style whould I use to either remove this or reduce the height?
Upload or progress?
Thanks,
~bg
Genady Sergeev
Telerik team
 answered on 16 Nov 2010
4 answers
207 views
Hi All,

how to change the font of RADGRID column.
I am using datarelation in Grid.  Autogenerated column = true


Bharat Rathore

Bharat
Top achievements
Rank 1
 answered on 16 Nov 2010
2 answers
111 views
I'm working on a Scheduler page that opens the add/edit form in a RadWindow. I based the idea on the External Edit in RadDock demo.

I have a question though.

I'm opening my RadWindow using code very like this from the demo...
ScriptManager.RegisterStartupScript(Page, GetType(), "formScript", "Sys.Application.add_load(openForm);", true);

I'd be interested to learn why this works when this ...
RadAjaxManager LocalManager = RadAjaxManager.GetCurrent(Page);
LocalManager.ResponseScripts.Add("OpenForm();");

doesn't.

-- 
Stuart

Stuart Hemming
Top achievements
Rank 2
 answered on 16 Nov 2010
6 answers
227 views
I have a RadToolTipManager on a master page and a RadComboBox on a child page.  I am trying to show a tooltip for the combobox on the onFocus event.  First off, the tooltip won't show using the ToolTipManager's showevent=onFocus property.  If I set the OnClientFocus property of the RadComboBox to show the ToolTip via javascript, I get a javascript runtime error (Object doesn't support this property or method).

If I put the RadToolTipManager on the child page, everything works fine, but I need it to be in the masterpage.  Any thoughts?

Thanks...
Svetlina Anati
Telerik team
 answered on 16 Nov 2010
4 answers
108 views
Hi - I am using a scroller with the client api to stop, start, letf and right the scroller content. This all works fine as per your demo but I need the scroller to be scrolling when it loads. In your example the user has to press play to start it but I want it to be playing by default.

How do I do this?

Thanks.
John
Top achievements
Rank 1
 answered on 16 Nov 2010
1 answer
137 views
I have a radgrid on top of the page, and a radmenu below it.
when I click on the filter icon of a column in the radgrid, the filter options list expands behind the radmenu...

I tried to change radmenu z-index it didnt help. Is there a way to get around this problem?

thanks in advance
Princy
Top achievements
Rank 2
 answered on 16 Nov 2010
4 answers
151 views


Problem: we have a  FireFox problem - too much recursion in our Website, so from the post "http://bytes.com/topic/javascript/answers/152236-strange-firefox-problem-too-much-recursion"
it gives suggestion to Update "Ajax control Toolkit" to get latest version.So We are updated "Ajax control Toolkit 3.0" to "Ajax control Toolkit 3.5"
Steps to follow:

Telerik Version Used:Telerik version 2010.2.1029.35

Steps:

1.)We are Installing "Ajax control Toolkit 3.5.40412.2" in visual Studio 2008 (3.5).


2.)when toolkit install then it gives the following error:

AjaxControlToolkit requires ASP.NET Ajax 4.0 scripts. Ensure the correct version of the scripts are referenced. If you are using an ASP.NET ScriptManager, switch to the ToolkitScriptManager in AjaxControlToolkit.dll.

===============\==========================================================================================




3.)From this Post:
http://www.telerik.com/community/forums/aspnet-ajax/scriptmanager-and-stylesheetmanager/known-issues-and-breaking-changes-radscriptmanager.aspx
http://www.telerik.com/community/forums/aspnet-ajax/scriptmanager-and-stylesheetmanager/fix-radscriptmanager-compatibility-issues-with-ajax-control-toolkit.aspx
http://www.telerik.com/community/forums/aspnet-ajax/general-discussions/making-telerik-and-ajax-control-toolkit-play-nicely-together.aspx


4.)it is clear that "Ajax control Toolkit 3.5.40412.2" compatiable  with visual Studio 2008 (3.5)
when we use above code of forum it gives error



When use code:
<telerik:RadScriptManager runat="server">
    <Scripts>
        <asp:ScriptReference Assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
            Name="MicrosoftAjax.js" Path="Scripts-40412/MicrosoftAjax.js" />
        <asp:ScriptReference Assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
            Name="MicrosoftAjaxWebForms.js" Path="Scripts-40412/MicrosoftAjaxWebForms.js" />
    </Scripts>
</telerik:RadScriptManager>


Error:Sys.InvalidOperationException: A control is already associated with the element.
      ASP.NET Ajax client-side framework failed to load.









Kamen Bundev
Telerik team
 answered on 16 Nov 2010
4 answers
95 views
I developed and tested my RadControl Web app using ajax on my workstation and all is fine.
When I roll it out to our W2k3 server and view it from my workstation(via intranet), the pages are displayed but controls are all over the show.
If I Remote desktop onto the W2k3 server and view the site it is fine like on my workstation.
Do I have to install telerik on the server?
Any help would be appreciated.
Shane
Top achievements
Rank 1
 answered on 16 Nov 2010
1 answer
64 views
I am using Web Service binding but have not implemented a "provider". Instead, I'm simply trying to code the web service methods directly. I'm not sure if this is causing my problem or not.

Let's take a simple example:

[WebMethod(EnableSession=true)]
public IEnumerable<AppointmentData> GetAppointments(SchedulerInfo schedulerInfo)
{
    List<AppointmentData> result = new List<AppointmentData>();
    var q = from c in WebUtils.User.Merchant.Appointments
            where c.ServiceDateTime >= schedulerInfo.ViewStart
                && c.ServiceDateTime <= schedulerInfo.ViewEnd
                && c.CancelDate == null
            select c;
    foreach (WWS.BLL.Appointment a in q.ToList())
    {
        AppointmentData ad = new AppointmentData();
        ad.Description = a.Service.Category.Description + " - " + a.Service.Description;
        ad.ID = a.Id;
        ad.Start = a.ServiceDateTime.ToUniversalTime();
        ad.End = a.ServiceDateTime.AddMinutes(a.Duration).ToUniversalTime();
        ad.Subject = a.Service.Description;
        result.Add(ad);
    }
      
    return result;
}

The above code runs without exception and returns appointments which appear on the scheduler. The only problem is that they don't appear in the right time slot on the scheduler. For example, when I inspect "ad.Start" in the debugger it says "{11/8/2010 10:27:58 PM}" but when the appointment appears on the scheduler it is on 11/9/2010 and in the 1am time slot. If I edit the appointment the editor says the start time is 1:27 AM.

Incidentally, I also get a javascript error when trying to edit the appointment:

Microsoft JScript runtime error: 'this._appointment.get_recurrenceRule()' is null or not an object

I'm guessing that I'm missing something rather obvious, but I don't know what it is.

Thanks,
Scott
Peter
Telerik team
 answered on 16 Nov 2010
1 answer
71 views
Hi all,

I have a page where I have some invoices with GridClientSelectColumn and my idea is when I select a inovice a label has to be updated with the total amount of the selected rows, I'm looking for how to capture the event, I looked into the examples in VB but I have found nothing.

Have you got a code snippet that works for that ?

Thanks in advance
Shinu
Top achievements
Rank 2
 answered on 16 Nov 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?