Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
86 views
i used  radgrid  for asp.net ajax in default.aspx and built success. But  when it was running in browser , it was appear error :

System.MissingMethodException: Method not found: 'Void System.Web.UI.ScriptManager.RegisterStartupScript(System.Web.UI.Page, System.Type, System.String, System.String, Boolean)'.

That is error by my ajax entensions ?
I am using version trial.
Duy
Top achievements
Rank 1
 answered on 01 Jul 2008
4 answers
287 views
I can chalk up about 8 hours of my time trying to resolving issues for the ASP.NET AJAX upgrade.  I'm tired of searching the forums, looking for an answer to this one...

<telerik:RadGrid
AutoGenerateColumns="false"
AllowFilteringByColumn="True"
AllowSorting="True"
Width="700px"
ID="RadGrid1"
runat="server"
Skin="Telerik"
OnNeedDataSource="RadGrid1_NeedDataSource"
OnInsertCommand="RadGrid1_InsertCommand"
OnDetailTableDataBind="RadGrid1_DetailTableDataBind"
OnItemCommand="RadGrid1_ItemCommand"
OnDeleteCommand="RadGrid1_DeleteCommand"
OnUpdateCommand="RadGrid1_UpdateCommand"
GridLines="None" AllowPaging="True" PageSize="8" EnableEmbeddedSkins="False"
>

I am trying to modify the Telerik skin.  I have finally got the CSS working by MANUALLY adding a reference to the CSS file in my Master Page.  Now I have discovered that the background image is not working for the Filter dropdown.
  
Since I can't upload an image to the forum, here's a link to a screen shot of my grid:
http://tomgilkison.blogspot.com/2008/06/filter-background-not-showing-up-in.html


I have looked through the CSS and found:
/*filtering*/
.GridFilterRow_Telerik
{
 background:#f9f9f9;
}

This new way of working with Skins is sooooo painful.  I hope it's worth it in the end.  I have probably spent a good day troubleshooting WebResource.axd issues.  Not fun when the project was due a week ago...

Sebastian
Telerik team
 answered on 01 Jul 2008
1 answer
82 views

I have placed two RADTextBox controls into my project created custom skin for them based on _Default one. It was skinned and shown properly in summary.

The problem appeared when I placed FormDecorator on the page.
Graphical parts of those element disappeared. RAD input labels elements render correctly and I can see the space for input elements is reserved but no input is possible.

After some tests I discovered that all is caused by RadStyleSheet manager.
When I remove it all starts render corectly.

What could be the couse of it? Could you fix it?

michal

Georgi Tunev
Telerik team
 answered on 01 Jul 2008
3 answers
180 views
Hello,

I am using the RadScheduler the way your examples say how to use it but I am experiencing a issues. On the same page as the RadScheduler I have a RadCalendar that lets the user jump to a specific day or month, I have also integrated RadToolTip for the scheduler for its appointments. The issue is occurring when I role over dates in the RadCalendar it trys to use the tooltip. How do I stop this from occurring? 

http://www.patternrecognitioninc.com/telerik/Screenshot1.gif

The second issue Im experiencing is that when double clicking on a appointment the RadToolTip is not going. It just stays on the screen even though I have moved into the edit form.

http://www.patternrecognitioninc.com/telerik/Screenshot2.gif

The examples that I followed were the RadToolTip integration on the Schedular and the First Look example.

Please let me know.
Tervel
Telerik team
 answered on 01 Jul 2008
2 answers
215 views
Hi,

I am facing one issue in line chart, i want to show two lines on chart one is target line and other is progress line.

Target line has two items Starting Sales % and Goal sales %, this line should be strectch from starting date to ending  date.

Progress line will show sales percentage datewise.

X axis - displays date (starting date to ending  date)
Y axis - displays sales percentage ( 0 - 100, steps=10)
Its might possible at some dates sales percentage not available.
for e.g. data is like given below:
Starting Sales % : 35
Goal Sales %: 75

Starting date : 19 June 2008 
Ending date :  26 June 2008 

Date       Sales in %
19 june    45
21 june    55
22 june    60
24 june    60
25 june    65


how can i relate Sales percentage with date i.e it should display 45% for 19 june and 55% for 21 june not for 20 june.In above e.g. sales % is not available for 20 june then first point on progress line should start from 19 june and second point on progress line should be corresponding to 21 June on x-axis.

Please help me on this, i am not getting way to relate my data as per my requirement.

I am using RadChart - Line type version 3.0.2.0.  
Dwight
Telerik team
 answered on 01 Jul 2008
15 answers
373 views
Hello Community,

I was very excited but the brand new FormDecorator. But after using it I'm wondering whether it is a good solution or not.
I think that it might be a better solution to get from Telerik brand new controls (Button, CheckBoxes...) rather than decorating existing ones.

I had a look to the currently generated code and I think that it generates too many things, probably to maintain compatibilty with existing code.
In my tests, it leads to some layout rendering errors because orginal input elements (for buttons) are rendered with opacity property set to 0.

I would prefer to have brand new controls like buttons or checkboxes and place them into existing forms. Maybe it would be more work for me but at least it would avoid Telerik to forced to support legacy code (code that expect an input element and not a RadButton control).

What is your opinion? Am I the only one?

BR, Laurent
Georgi Tunev
Telerik team
 answered on 01 Jul 2008
1 answer
112 views
Hi, I am just using Radgrid with dynamic datasource but I want to show the groupfooter on each datarow. I tried to set the porperty like below:
         for (int i = 2; i < this.RadGrid.MasterTableView.AutoGeneratedColumns.Length; i++)  
          {  
             GridBoundColumn col = this.RadGrid.MasterTableView.AutoGeneratedColumns[i] as GridBoundColumn;  
           col.Aggregate = GridAggregateFunction.Sum;  
       }  
 
aspx code like:
            <Telerik:RadGrid ID="RadGrid" runat="server" AllowPaging="True" AllowSorting="True"   
                GridLines="None" Height="500px" OnNeedDataSource="RadGrid_NeedDataSource" ShowFooter="false" 
                ShowGroupPanel="false" PageSize="50" Width="100%" Visible="false">  
                <ClientSettings> 
                    <Scrolling AllowScroll="True" FrozenColumnsCount="2" UseStaticHeaders="True" /> 
                </ClientSettings> 
                <MasterTableView ShowGroupFooter="true" GroupLoadMode="Client" TableLayout="Auto">  
                    <GroupByExpressions> 
                        <Telerik:GridGroupByExpression> 
                            <GroupByFields> 
                                <Telerik:GridGroupByField FieldName="Group" FieldAlias="Group" HeaderText="Group" /> 
                            </GroupByFields> 
                            <SelectFields> 
                                <Telerik:GridGroupByField FieldName="Group" FieldAlias="Group" HeaderText="Group" /> 
                            </SelectFields> 
                        </Telerik:GridGroupByExpression> 
                    </GroupByExpressions> 
                    <RowIndicatorColumn Visible="False">  
                        <HeaderStyle Width="20px" /> 
                    </RowIndicatorColumn> 
                    <ExpandCollapseColumn Resizable="False" Visible="False">  
                        <HeaderStyle Width="20px" /> 
                    </ExpandCollapseColumn> 
                    <EditFormSettings> 
                        <PopUpSettings ScrollBars="None" /> 
                    </EditFormSettings> 
                </MasterTableView> 
                <HeaderStyle Width="100px" /> 
            </Telerik:RadGrid> 
 
but it does not work .Actually can I set the aggregate property to the autogenerated columns?
Thanks!
Shinu
Top achievements
Rank 2
 answered on 01 Jul 2008
3 answers
113 views
My setup is as follows:
- Latest Telerik Controls
- Dotnetnuke 4.5.3 (standalone Radgrids work fine in it)

I've got a RadAjaxManager, and then the following hierarchy:

RadAjaxpanel  > RadPanelBar > RadPanelBarItem (template) > RadGrid

Basic RadGrid functionality is as expected, using declarative datasource and default paging, but, the paging is funky - changing pagesize has no effect whatsoever after it postbacks, and clicking page '2' works, however clicking page '3' does not.

I have all the components referenced in the UpdatedControls section of the Ajaxmanager.

Can someone please help a guy out I think i've exhausted the docs.
Iana Tsolova
Telerik team
 answered on 01 Jul 2008
3 answers
191 views
Hello,
I am trying to switch a UserControl from using the RadToolTip to using the RadToolTipManager with load on demand.  I had the page working with the regular tooltip, but now it pops up the tooltip window, but it is just blank (the on demand control never shows). 
I can set break points and see that the control loads, and the properties are being set, but the preRender event never fires (I don't know if needs to in this case).
Anyway, I don't get any errors, the control just doesn't display.  I must be doing something stupid, but I can't figure out what it is.

Here is the ascx code:

<

telerik:RadToolTipManager ID="RadToolTipManager1"
Width="360" Height="288" Animation="Slide"
Position="MiddleRight" Sticky="true" AutoCloseDelay="1000"
OnAjaxUpdate="OnAjaxUpdate" runat="server">
</
telerik:RadToolTipManager>


Here is the .vb code

Protected Sub OnAjaxUpdate(ByVal sender As Object, ByVal args As ToolTipUpdateEventArgs)
Me.UpdateToolTip(args.Value, args.UpdatePanel)
End Sub

Private Sub UpdateToolTip(ByVal contextKey As String, ByVal panel As UpdatePanel)

If contextKey = "" Then Exit Sub
Try
Dim ctrl As Control = Page.LoadControl("~/App_WebUserControls/bpThumbnail.ascx")
Dim bigThumbnail As App_WebUserControls_bpThumbnail = DirectCast(ctrl, App_WebUserControls_bpThumbnail)
bigThumbnail.AltText = contextKey
Finally
End Try
End Sub

Tervel
Telerik team
 answered on 01 Jul 2008
3 answers
63 views
Is there a way to have more than one slide point ? My scenario is that I want to display the price of a product and have a min value and a max value, but I want to be able to move 2 sliders so that I can get a value range. So if my min is 0 and my max is 1000 I want to move the 2 sliders so that the range is between 200-300. Can this be done?
Tervel
Telerik team
 answered on 01 Jul 2008
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?