Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
202 views
I have a relatively complex page.~26nbsp~3b I am using a RadAjaxManager and a few controls both ASP.NET and RadControls for ASP.NET Ajax.~26nbsp~3b When I setup the AjaxManager to update on either of my buttons~2c I noticed that my button with a ClientClick event isn~27t firing the ServerClick code.~26nbsp~3b I am using the ClientClick event to pop up a confirmation box with the code ~22javascript~3avoid_confirm~3dconfirm~28~27You are about to delete this record~2c and you will not be able to undo this action.~27~29~3breturn void_confirm~3b~22.~26nbsp~3b Is there something I need to do in order to get this to work with the AjaxManager so I can have the confirmation and the server click code~3f~3cbr /~3e
Sebastian
Telerik team
 answered on 30 Apr 2009
3 answers
86 views
Hi there

I've just spent 2 hours trying to figure out what was causing my problem.

I have a web service which in some cases could throw an exception. When using the RadCompression module, the exception is not properly deserialized by the MS Ajax framework, resulting in a "'Message' is null or not an object" JavaScript error.

How can I properly receive exceptions from my web services using the RadCompression module?
Rosen
Telerik team
 answered on 30 Apr 2009
0 answers
87 views
On the navigationbar there are 4 button by defaults: day, week, month, timeline.
Can i add another button like 4 days and do st with event click.
thanks
Dung BUI
BUI
Top achievements
Rank 1
 asked on 30 Apr 2009
4 answers
160 views
Hi,

I'm trying to populate the content of a RadDateTimePicker from an AJAX call.  I've managed to get the control to show the new date however when I do the box of the control reverts to a standard .net control appearance and also the icons seem to show their alt text ("Open the calendar popup" and "Open the time view popup").  It seems as though the CSS gets screwed up when setting the value from the server,

I'm using a formview so have the following code in the codebehind:

DirectCast(uxFormView.FindControl("uxDate"), RadDateTimePicker).SelectedDate = Now() 

Note that if I use set_selectedDate from Javascript the date gets populated with no damage to the CSS.

Any ideas?

Regards,

Jon
Sebastian
Telerik team
 answered on 30 Apr 2009
1 answer
55 views
Hey,

I'm working with a RadComboBox and I'm getting ">" characters next to all the dropdown items. Is there a way to turn this off?

Here's my combobox definition;

 

<eserve:RadComboBox

 

 

ID="RadComboBoxSessionNumber"

 

 

Skin="Gray"

 

 

runat="server"

 

 

Height="200px"

 

 

Width="200px"

 

 

DropDownWidth="298px"

 

 

EmptyMessage=""

 

 

HighlightTemplatedItems="true"

 

 

Filter="Contains"

 

 

EnableLoadOnDemand="true"

 

 

OnItemsRequested="RadComboBoxSessionNumber_ItemsRequested"

 

 

DataTextField="sessionnumber"

 

 

DataValueField="sessionnumber"

 

 

MarkFirstMatch="false"

 

 

EnableViewState="true"

 

 

ShowToggleImage="false"

 

 

ToolTip="Search On Session Number">

 

 

</eserve:RadComboBox>

Thanks,
Larry

 

Veselin Vasilev
Telerik team
 answered on 30 Apr 2009
4 answers
236 views
Hi,

i have a question regarding the Telerik Licence Agreement. Especialy for this passage:

The SOFTWARE may not be distributed as part of products that have the same or substantially the same primary functionality as the SOFTWARE. (Example for RadControls for ASP.NET: you may purchase TELERIK RadEditor for ASP.NET and create a blog application/component. However, you cannot wrap RadMenu and offer it as a SharePoint WebPart or DNN menu skin object, since its primary functionality would be substantially the same as the SOFTWARE).

What does it mean?

Let's say if i purchase the normal Developer Licence without Source Code Subscription. I'm not able to build a webpart in Sharepoint which is using one of the Telerik Controls to extend one of the build in features (For example Navigation)?

Can you please clarify this for me?

Thx a lot and sorry for my poor english :)

best regards from Germany
Pascal
Lidiya
Telerik team
 answered on 30 Apr 2009
1 answer
123 views
Hello, i use the GridHTMLEditorColumn in my Grid. Now i want to disable the Toolbar in the top for editing HTML, is there any property to disable it?
Daniel
Telerik team
 answered on 30 Apr 2009
1 answer
201 views
Hello, i want to save a long description in a textbox, is there an alternative to the GridHTMLEditorColumn without the HTML Toolbar?

Daniel
Telerik team
 answered on 30 Apr 2009
1 answer
66 views
hello,
I have a problem with the styles: RadMenu is hidden from RadDockZone and RadDock
this code that worked with Q12008 doesn't now work anymore



<html xmlns="http://www.w3.org/1999/xhtml" > 
<head runat="server"
<title></title
<style type="text/css"
.rdContent,.raddock, .raddockzone, .rdSideBorders {overflow:visible !important;} 
.zindex {z-index:1 !important; } 
</style> 
</head> 
<body> 
    <form id="form1" runat="server"
    <asp:ScriptManager runat="server"></asp:ScriptManager> 
    <div> 
        <telerik:RadDockLayout ID="RadDockLayout1" runat="server"
         
            <telerik:RadDockZone ID="RadDockZone1" runat="server" CssClass="zindex"
             
                <telerik:RadDock ID="RadDock1" runat="server" CssClass="zindex"
                <ContentTemplate> 
                    <telerik:RadMenu runat="server"
                    <Items> 
                    <telerik:RadMenuItem Text="Item_0"><Items> 
                    <telerik:RadMenuItem Text="Item_1"></telerik:RadMenuItem> 
                    <telerik:RadMenuItem Text="Item_2"></telerik:RadMenuItem> 
                    <telerik:RadMenuItem Text="Item_3"></telerik:RadMenuItem> 
                    <telerik:RadMenuItem Text="Item_4"></telerik:RadMenuItem> 
                    </Items> 
                    </telerik:RadMenuItem> 
                    </Items> 
                    </telerik:RadMenu> 
                </ContentTemplate> 
                </telerik:RadDock> 
                 
                <telerik:RadDock ID="RadDock2" runat="server"
                <ContentTemplate> 
                    he is not seen with Q12009 
                </ContentTemplate> 
                </telerik:RadDock> 
             
            </telerik:RadDockZone> 
             
            <telerik:RadDockZone ID="RadDockZone2" runat="server"
             
                <telerik:RadDock ID="RadDock3" runat="server"
                <ContentTemplate> 
                    he is not seen with Q12009 
                </ContentTemplate> 
                </telerik:RadDock> 
             
            </telerik:RadDockZone> 
         
        </telerik:RadDockLayout> 
    </div> 
 
    </form> 
</body> 
</html> 

thanks

Max


max
Top achievements
Rank 1
 answered on 30 Apr 2009
3 answers
133 views
Dear Support,

I have a Radgrid on my Page. If I interact with the Grid for example
I scroll to another Page or group by the grid position automaticly
move down from the initial top positionen of the page. I thing 50 px.

I can't find an error. I use the embadded Office 2007 Skin. But
also with other Skins happend this behavior.

Thanks in advance.

Christian
Christian
Top achievements
Rank 1
 answered on 30 Apr 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
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
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?