Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
96 views
On the "Tool Bar Mode" page, the RadEditor2 has a very thin border on the footer and I would like to duplicate that behavior however I cannot find the required information.  I have duplicated that code with no luck.

Rumen
Telerik team
 answered on 18 Aug 2008
0 answers
58 views
Hi,

I m using Rad Dock. My scenerio is that Rad dock is inside a DataGrid.. when i click an link then Dock will appear.. but i can't get any solution for it

would be of great help for me if anyone can help me, Thanks

BR
Rokan
Rokanuzzaman
Top achievements
Rank 1
 asked on 18 Aug 2008
5 answers
346 views
Hello,
I am playing with the treeview control and trying to get it to load on demand with a webservice, (Which I have working)

however, I am now trying to capture the onNodeClick server side event.  Upin Clicking a node, I receive an "Object reference not set to an instance of an object." Error with the following stack trace:
[NullReferenceException: Object reference not set to an instance of an object.]
   Telerik.Web.UI.ControlItem.LoadFromDictionary(IDictionary`2 dictionary) +165
   Telerik.Web.UI.NavigationItem.LoadFromDictionary(IDictionary`2 dictionary) +31
   Telerik.Web.UI.RadTreeNode.LoadFromDictionary(IDictionary`2 dictionary) +32
   Telerik.Web.UI.ClientStateLogPlayer.Insert(ClientStateLogEntry entry) +179
   Telerik.Web.UI.ClientStateLogPlayer.Play(ClientStateLogEntry entry) +65
   Telerik.Web.UI.ClientStateLogPlayer.Play(IEnumerable`1 clientStateLogEntry) +94
   Telerik.Web.UI.RadTreeView.LoadLogEntries(TreeViewClientState clientState) +78
   Telerik.Web.UI.RadTreeView.LoadClientState(TreeViewClientState clientState) +47
   Telerik.Web.UI.RadTreeView.LoadPostData(String postDataKey, NameValueCollection postCollection) +141
   Telerik.Web.UI.RadDataBoundControl.System.Web.UI.IPostBackDataHandler.LoadPostData(String postDataKey, NameValueCollection postCollection) +36
   System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad) +661
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1194


The treeview is contained in a WebUserControl.  Has anyone else seen this problem before? 
I had this working with the ASP.Net treeview, but it's too slow, so I want to get the telerik control working.

Christian
Top achievements
Rank 1
 answered on 18 Aug 2008
0 answers
143 views
Hi,

I have One ImageButton
<asp:HyperLink ID="ImgSearchUsr" runat="server" ImageUrl="~/Images/search_user.gif"></asp:HyperLink>
And I will TargetCOntrol Id For One ToolTip..

<telerik:RadToolTip runat="server" ID="RadTTSearch" Sticky="true" ShowEvent="OnMouseOver"
            Width="600px" ManualClose="true" TargetControlID="ImgSearchUsr" RelativeTo="Element"
            EnableViewState="true">
and In toolTip Control Its Contain One Search Button that is..

<asp:ImageButton ID="ImgSearch" runat="server" ImageUrl="~/Images/search.gif"  OnClick="ImgSearch1_Click" />             
                                 
</ToolTip>

My Problem Is this Within ToolTip Search Button(ImgSearch) OnClick Event Is not Working?

What is the Problem Plse Help Me..

Bye
kallish


kallish
Top achievements
Rank 1
 asked on 18 Aug 2008
1 answer
178 views
Hi,

I have this table appointment

ID_Appointment
Subject
Star
End
Data_Recurrence
Data_Storage
ID_ClassRoom
ID_TypeReservation

I would like insert appointment subdivided to color typereservation,

example:

ID_TypeReservation:     1
Description:                    lesson

I would like insert a appointment lesson with background red, how i can?
There is an example with code source?

I use a CustomAdvanceTemplate binding to sqldatasource..for develop my application..





 
Rubihno
Top achievements
Rank 1
 answered on 18 Aug 2008
9 answers
189 views
Hi,

I've just updated from Q3 2007 to Q1 2008 version. I already had an integrated scheduler running fine. Now I've upgraded I get the following javascript error popping up first time I open the page:

Line 13

Error: 'this._owner.get_resources()' is null or not an object

The error happens on the following line of code (within ScriptResource.axd):

var _4=this._owner.get_resources().getResourcesByType(_3);

After that if I click any of the calendar dates I get the following error:

Line: 380

Error: 'null' is null or not an object.

This occurs on the following line (within my aspx page, obviously included the javascript from your resources): 

var onclick = $find("ctl00_panelFadeOut").get_OnClickBehavior().get_animation();

Please can you help to point me in the right direction, so I can resolve this issue as quickly as possible.

Thank you.

T. Tsonev
Telerik team
 answered on 18 Aug 2008
2 answers
185 views
Hi, i like the RadAjax for ASP.NET AJAX Blog example and i create a page to display my blog on that. everything is perfectly work but i use sql server not access Db, so i'm getting error on SELECT * from BooksDB WHERE dtEntered = ? that 'Incorrect syntax near ? and i have 45 blog posts in my database so i want to retrieve by date with this method, and with this coding i'll retrieve my blog by selected dates only.

Public Sub Calendar1_DayRender(ByVal sender As Object, ByVal e As DayRenderEventArgs)
        If e.Day.[Date] = DateTime.Parse("8/05/2008") OrElse e.Day.[Date] = DateTime.Parse("8/10/2008") OrElse e.Day.[Date] = DateTime.Parse("8/16/2008") Then
            e.Cell.Attributes.Add("class", "CalendarDay")
        Else
            e.Cell.Controls.Clear()
            e.Cell.Controls.Add(New LiteralControl(String.Format("<div>{0}</div>", e.Day.[Date].Day)))
        End If
End Sub

but i have 4 month of data, so i want to retrieve records according to this.

so please help me to solve this matter

thank you

saquib
Top achievements
Rank 1
 answered on 18 Aug 2008
1 answer
54 views
Hi All,

I created project on one pc having telerik control asp.net ajax Q1 2008.

I copied this project on another pc that does not have installed Telerik Control ASP.NET AJAX Q1 2008.
In project i also include the folder Script and Skin.

Issues:
1>When i open aspx page it shows me Unrecognise tag prefix on the telerik tag.

<telerik:RadGrid id="test" runat="server" >
..
...
</telerik:RadGrid >

2>I can not able to write telerik tag in aspx source page.


Thanking You.
Daniel
Telerik team
 answered on 18 Aug 2008
4 answers
109 views
Hello all,

I am trying to work with the RadGrid control to have both edit and detail views.  The feel I am looking for is like the following example:

http://www.telerik.com/demos/aspnet/Grid/Examples/Programming/WebGrid/DefaultCS.aspx

which includes and in-form edit view.  I have modified this example successfully to work with my data, and am starting to understand it.  What I'd like to do is to also have a "detail" link for each record and display a similar in-form view but with read only labels.

I hope I am clear in what I am trying to accomplish.  Could someone please help push me in the right direction?

Thanks,
John Reynolds
Princy
Top achievements
Rank 2
 answered on 18 Aug 2008
1 answer
159 views
My english is poor,but I will do my best to make myself understood.When the radwindow is called to show,I can just see the content window.While I mouseover the titlebar or aound content window,the window will show fine.How can I do to resolve this.I called the radwindow to show by client code like this.
function getWindows() 
      { 
         $find("<%=RMILSWeb.ClientID%>").disable(); 
         //return MainRadWindow; 
         return $find("<%=RadWindow1.ClientID%>"); 
      } 
function btnReserve_Click() 
         { 
            getWindows().setUrl('DialogBox_Telerik/SelectPatronForReserve.aspx'); 
            getWindows().set_modal(true); 
            getWindows().setSize(300,120);  
            getWindows().setActive();  
            getWindows().set_behaviors(Telerik.Web.UI.WindowBehaviors.Move + Telerik.Web.UI.WindowBehaviors.Close );  
            getWindows().show(); 
         } 


Georgi Tunev
Telerik team
 answered on 18 Aug 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?