Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
63 views
Hi,
I have two datasets that I create in code..

SqlDataAdapter.Fill(dsDetails,

"RoleResponsibility")

 

SqlDataAdapter.Fill(dsDetails,

"Role")

The "Role" table in the dsDetails dataset is the master table, and the RoleResponsibility table is the child.

I have reviewed the documentation, and I am a little confused, mainly because the samples are creating tables in code.

How do you have a hierarchical view between two tables in a dataset ?

Thanks

 

Daniel
Telerik team
 answered on 02 Feb 2009
2 answers
164 views
Hi,

Is it possible to open the same RadWindow from multiple elements on the page?  Currently I can only set one element to cause the window to open by setting the OpenerElementID.

Thanks,

Jeff
Roderick Prince
Top achievements
Rank 1
 answered on 02 Feb 2009
1 answer
88 views
I have two usercontrols which contained RadAjaxManagerProxy's to handle page updates. These controls where both loaded independently within an aspx page which contained it's own RadAjaxManager. Everything seemd to play along nicely and my 

RadAjaxLoadingPanel

images displayed as the page data was being updated within these usercontrols.

Recently I created a new usercontrol which contained nothing but a RadPanelBar and within that it contained two panel items. Each of the panel items contained one of the usercontrols mentioned above. Essentially this new control became a wrapper for the previous two controls to be included within a panel bar.

The problem I am having however is that the loading panel images do not appear to be getting triggered as it was before. The documentaion is a little sparse on this topic.

Here is a snippet sample of my code:

Main .aspx

....  
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">  
        <AjaxSettings> 
            <telerik:AjaxSetting AjaxControlID="btnRun">  
                <UpdatedControls> 
                   ....  
                </UpdatedControls> 
            </telerik:AjaxSetting> 
        </AjaxSettings> 
    </telerik:RadAjaxManager> 
    <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server">  
        ...  
    </telerik:RadAjaxLoadingPanel> 
 
<uc1:MyControl ID="MainControl" runat="server" /> 
... 

Main usercontrol.ascx

<telerik:RadAjaxManagerProxy ID="RadAjaxManagerProxy1" runat="server">      
</telerik:RadAjaxManagerProxy> 
<telerik:RadPanelBar Skin="Gray" ID="RadPanelBar1" runat="server" AllowCollapseAllItems="true" 
    ExpandMode="SingleExpandedItem" EnableViewState="true" Width="100%">  
    <Items> 
        <telerik:RadPanelItem Text="Panel 1" runat="server" 
            Value="1">  
            <Items> 
                <telerik:RadPanelItem runat="server">  
                    <ItemTemplate> 
                        <us1:MyControl1 runat="server" ID="Control_1" /> 
                    </ItemTemplate> 
                </telerik:RadPanelItem> 
            </Items> 
        </telerik:RadPanelItem> 
        <telerik:RadPanelItem Text="Panel 2" runat="server" Value="2">  
            <Items> 
                <telerik:RadPanelItem runat="server">  
                    <ItemTemplate> 
                        <uc1:MyControl2 runat="server" ID="Control_2" /> 
                    </ItemTemplate> 
                </telerik:RadPanelItem> 
            </Items> 
        </telerik:RadPanelItem> 
    </Items> 
    <CollapseAnimation Duration="100" Type="InOutBounce" /> 
    <ExpandAnimation Duration="100" Type="InOutBounce" /> 
</telerik:RadPanelBar> 
 

Control1.ascx (Control2.ascx is similar)

....  
 
<telerik:RadAjaxManagerProxy ID="RadAjaxManagerProxy1" runat="server">  
    <AjaxSettings> 
        ....<list removed for space> 
    </AjaxSettings> 
</telerik:RadAjaxManagerProxy> 
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel99" runat="server">  
    <img alt="Loading..." src='<%= RadAjaxLoadingPanel.GetWebResourceUrl(Page, "Telerik.Web.UI.Skins.Default.Ajax.loading.gif") %>' 
        style="border: 0px; position: relative; top: 75px;" /> 
</telerik:RadAjaxLoadingPanel> 
 
.... remaining page with controls .... 

I hope this makes sense. Bottom line question is how can I continue to get the loading panel images to work in this configuration.

Thanks!!

Paul
 

Georgi Krustev
Telerik team
 answered on 02 Feb 2009
1 answer
118 views
Hi,

I currently have a grid of which one field is bound to an image field in a database table. I use the ItemDataBound event to actually display the image.

I can see from your "export grid to pdf" example, you have exported the images, but they are automatically bound and displayed as they are files on disk.

How can I get the PDF to show the images that are in the grid?

thanks in advance

Bobby
Georgi Krustev
Telerik team
 answered on 02 Feb 2009
6 answers
5.3K+ views
When my data source has a 0.00 in it and I am using dataFormatString="{0:$###,###.##}" in my RadGrid, it is stripping out the zeros and also showing more than two decimal places. Does someone know how to effective show the zeros or alternatively how to use something perhaps besides a GridBoundColumn and still be able to aggregate and filter columns.

 

Daniel
Telerik team
 answered on 02 Feb 2009
4 answers
101 views
Ok so it is cool that you can tell the datepicker that multirow, multicol however if you do this there is no way to navigate between months (navigation) when you do that. So the request is to be able to do that.

Not sure if it is bug or by design either way would be cool for next release.
Christopher Bishop
Top achievements
Rank 2
 answered on 02 Feb 2009
1 answer
195 views
Hi.  We have a screen that a user can upload files per the standard functionality of the rad editor.  We used to cap the upload file size at whatever the default file size is, but have since bumped it up to 1 GB (essentially to remove the size restriction).  We have found from our clients that any large files (100 MB) that the popup for the media manager goes to a "page cannot be displayed", which I am assuming is because of a timeout.  Is there a way to bump up the amount of time an upload from the media manager can be allowed to have?
Lini
Telerik team
 answered on 02 Feb 2009
2 answers
68 views
I have problems when I try to open a asp.net file into the radeditor.

my file is this:

<%

@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm2.aspx.cs" Inherits="FileManager.WebForm2" %>

 

<!

 

DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

 

<

 

html xmlns="http://www.w3.org/1999/xhtml" >

 

<

 

head runat="server">

 

 

<title></title>

 

</

 

head>

 

<

 

body>

 

 

<form id="form1" runat="server">

 

 

<div>

 

 

 

</div>

 

 

</form>

 

</

 

body>

 

</

 

html>

When I open its in the RadEditor I lose the line

 

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm2.aspx.cs" Inherits="FileManager.WebForm2" %>


and only can see

 

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

 

<

 

html xmlns="http://www.w3.org/1999/xhtml" >

 

<

 

head runat="server">

 

 

 

 

 

<title></title>

 

</

 

head>

 

<

 

body>

 

 

 

 

 

<form id="form1" runat="server">

 

 

 

 

 

<div>

 

 

 

 

 

 

</div>

 

 

 

 

 

</form>

 

</

 

body>

 

</

 

html>

How can I to solve this problem?

thanks.

Pablo
Top achievements
Rank 2
 answered on 02 Feb 2009
1 answer
122 views
hi,

I am using radToolTip control and I am using the IsClient property = false in amy application. when I check the XHTML complience, it is saying that IsClient is not a valied attribute.

Please help me out to fix this

Thanks in advance
Svetlina Anati
Telerik team
 answered on 02 Feb 2009
2 answers
98 views
Hi There

I have written a HTML Editor for one of our clients. It employs the the File Explorer so that the user can select the html file and load it into rad editor.

The user has full access to the root of the directory. I have used the search patterens to restrict access to certain files. I would like to also make it so that certain directorys are not show in the file explorer.

e.g Users shouldnt be able to see the bin folder and app_data folder.

What is the best way to restrict access to these directorys whilst still allowing access to the root folder.

Thanks in advance.

 

Lini
Telerik team
 answered on 02 Feb 2009
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?