Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
114 views

Hi,

I am using Dot Net Nuke 4.9.x.

The Text/HTML editor included with Dot Net Nuke doesn't satisfy the client's needs to upload new images and files and create links from them, so I rolled my own, using the Telerik Rad Editor control.

This new control is great. I used it because it has built in image and document file managers that can upload new files. These managers appear as popup modal windows.

The problem I'm experiencing with the control I built is a permissions one: when I log in as admin, use the editor to edit the text/html and save it, everything works great.

But when in edit mode, if I also click on one of the Rad Editor's buttons to popup the image or document manager, then save the article, it logs me out of the site, and doesn't save the changes.

In other words, everything works fine, unless the modal popups are shown, then the site kicks me out.

The page is set to allow administrators to view and edit the page, and to allow all users to view the page.

Has anyone experienced this same problem or anything similar?

Is there some setting I can adjust in DNN or the Rad Editor to exempt these pop ups from authentication?

Thanks in advance,

Jason

Lini
Telerik team
 answered on 23 Jun 2009
2 answers
112 views
I have a radgrid that uses InPlace edit mode. After I click "Insert" on CommandItem new row appears. After I insert it I have to click "insert" button again. How can I remain in insert mode so the new row appears right after I add one?
Andrej
Top achievements
Rank 1
 answered on 23 Jun 2009
3 answers
88 views
I have a list of times in datetime format
List<DateTime> list = new List<DateTime>();  
list.Add(DateTime.Parse("08:00"));  
list.Add(DateTime.Parse("10:00"));  
list.Add(DateTime.Parse("12:00"));  
list.Add(DateTime.Parse("14:00"));  
list.Add(DateTime.Parse("16:00"));  
RadTimePicker1.TimeView.DataList.DataSource = list; 
and i want to know why they wont work in the timepicker on my page when i add them
Daniel
Telerik team
 answered on 23 Jun 2009
7 answers
247 views
hi there,
This is my first post!
Just wanted to say thanks for the great library although I am getting stuck with a simple telerik:radgrid.
Im trying to turn my datagrid into an ajax enabled version.
as you can see the markup is very simple which has a reference to a javascript function called myfunc.
This function opens a radwindow which has a button place on the popup.
I've been trying for hours now to get the button in the popup to refresh RadGrid1 after closing the popup.
I can make the popup close using the GetRadWindow functionality although I cant work out how to refresh the datagrid and how to refresh the datagrid asynchronously.  Can you please help me where I'm going wrong!??

many thanks,

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="" Inherits="" %>   
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>

<asp:PlaceHolder ID="xxx" runat="server" Visible="true">
        
    <telerik:RadGrid ID="RadGrid1" OnSortCommand="RadGrid1_SortCommand"
        OnPageIndexChanged="RadGrid1_PageIndexChanged" AllowSorting="True" PageSize="10" AllowPaging="True"
        AllowMultiRowSelection="True" runat="server" Gridlines="None">
        <MasterTableView Width="400" EnableNoRecordsTemplate="true" AutoGenerateColumns="false">
       
        <NoRecordsTemplate>
            ...
        </NoRecordsTemplate>
       
        <Columns>
            <telerik:GridTemplateColumn SortExpression="TrackName">
                <ItemTemplate>
                    ...
                </ItemTemplate>
            </telerik:GridTemplateColumn>
            <telerik:GridTemplateColumn SortExpression="TrackName">
                <ItemTemplate>
                   
                </ItemTemplate>
            </telerik:GridTemplateColumn>
            <telerik:GridTemplateColumn SortExpression="TrackName">
                <ItemTemplate>
                   <a href="javascript:void(0)" onclick="myfunc(<%# Eval("id") %> %>)"></a>
                </ItemTemplate>
            </telerik:GridTemplateColumn>
        </Columns>
        
        </MasterTableView>
        
    </telerik:RadGrid>
        
</asp:PlaceHolder>

<asp:PlaceHolder ID="PlaceHolderEmpty" runat="server" Visible="false">
    <div>
    <asp:Label ID="LabelEmpty" runat="server" resourcekey="LabelEmpty" />
    </div>
</asp:PlaceHolder>

Shinu
Top achievements
Rank 2
 answered on 23 Jun 2009
3 answers
267 views
Is it possible to use a placeholder as the ajaxupdatedcontrol in a ajaxmanager call?
Sebastian
Telerik team
 answered on 23 Jun 2009
3 answers
75 views
Hi,

I am not able to resize the frame properly if one of frame has a JAVA Applet (100% Height, Width). This is code structure that splits the page.

<

 

telerik:RadSplitter id="splitter"  FullScreenMode=true  runat="server" height="100%" width="100%" ResizeMode="AdjacentPane">

 

 

            <telerik:RadPane id="panel_Normal_HTMLPage" runat="server" width="48%" >

 

 

            </telerik:RadPane>

 

 

 


            <
telerik:RadSplitBar id="splitterBar" runat="server" collapsemode="Both" style="z-index:999999" />

 

 

 

        
            <
telerik:RadPane id="panel_JAVAApplet_FullPage" runat="server"></telerik:RadPane>

 

 

</telerik:RadSplitter>

It seems that splitter's drag drop doesn't work properly if dropping is over Java Applet.

Please help.

Kind Regards,
Abhi Rohila

 

Svetlina Anati
Telerik team
 answered on 23 Jun 2009
0 answers
56 views
Hi,

After adding/editing an appointment the radscheduler should focus on the currently added/edited appointment.

Thanks

Reetha
Reetha
Top achievements
Rank 1
 asked on 23 Jun 2009
2 answers
1.3K+ views
I want to run the Template Wizzard and Project Wizzard but they don't exist. I downloaded RadControls for ASP.NET AJAX and installed it. I can't find the "Telerik" menu in Visual Studio that all the help docs talk about. I'm looking at this page in the help files http://www.telerik.com/help/aspnet-ajax/vsxtemplatewizard.html This page talks about a "RadControls for ASP.NET AJAX menu" item. Where is it supposed to be?

I know the install went correctly because Visual Studio Toolbox has a new group with all the tools. There is a Telerik folder on my Windows start menu. Where is this menu? Is this a sub menu buried in some really odd spot that I'm not seeing?

I'm using Visual Studio 2008 Professional (SP1 with all Windows updates).
The install program I downloaded and ran is named RadControls_for_ASP.NET_AJAX_2009_1_527_dev.exe
I have purchased the licensed product version.

Here is another help file page that talks about the "Menu" but does not tell me where to look for it http://www.telerik.com/help/aspnet-ajax/vsx_projectwizard.html

Thanks,
Greg

Erjan Gavalji
Telerik team
 answered on 23 Jun 2009
2 answers
233 views
Hi
    I am using the RadMenu control in the Master page. By default the z-index value was set to 7000. Is the the any way to change the z-index value. Please give your valuable ideas. With expecting your valuable Reply.

Note: I have tried with by giving  "style: z-index: 0px;". But it not works. If I write any style related to z-index. All styles are override by z-index:7000.



Thanks

Mohamed

Mohamed
Top achievements
Rank 1
 answered on 23 Jun 2009
2 answers
68 views
Hi,

I have installed the Q3 2008 Office2007 converted skin and it works for most of the components, but the slider doesn't work anymore. The cursor is not visible, so we can't do any action. Is there a problem with the converted skins on this control, or is this could come from another problem on my page ? (It works fine with the original skin of Q1 2009 and I just change the skin).

Regards

[Nean]
[Nean]
Top achievements
Rank 1
 answered on 23 Jun 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?