Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
679 views
I'm using 2010.9.929. I get this in all the browsers. Here's the url:

/Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=radScriptManager_TSM&compress=1&_TSM_CombinedScripts_=%3b%3bAjaxControlToolkit%2c+Version%3d4.1.40412.0%2c+Culture%3dneutral%2c+PublicKeyToken%3d28f01b0e84b6d53e%3aen-US%3a315e40c1-4559-4b59-ba08-9c63c3f1ef4d%3aea597d4b%3ab25378d2%3bTelerik.Web.UI%3aen-US%3a183fb741-216d-4765-9b46-4a1f5d38fdd7%3a16e4e7cd%3af7645509%3a22a6274a%3a24ee1bba%3ae330518b%3a1e771326%3ac8618e41%3a874f8ea2%3a19620875%3a490a9d4e%3abd8f85e4%3aed16cbdc%3aaa288e2d%3a58366029%3bAjaxControlToolkit%2c+Version%3d4.1.40412.0%2c+Culture%3dneutral%2c+PublicKeyToken%3d28f01b0e84b6d53e%3aen-US%3a315e40c1-4559-4b59-ba08-9c63c3f1ef4d%3a923aa3cc%3a853c2e0b%3a46f97eb1%3a782b16ab%3ade0c8b05

Here's the ASPX code.

<%@ Page Title="" Language="C#" MasterPageFile="~/Includes/MasterPages/PortalMasterPage.master"
    AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="Admin_ManageConfirmations_Default"
    Culture="auto" UICulture="auto" %>
 
<asp:Content ID="Content1" ContentPlaceHolderID="Head" runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="PageTitle" runat="Server">
    <asp:Localize runat="server" meta:resourcekey="PageTitle">Pending Confirmations</asp:Localize>
</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="MainContent" runat="Server">
    <telerik:RadAjaxManager ID="ramAjaxManager" runat="server" DefaultLoadingPanelID="loadingPanel">
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="ddlServiceProvider">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="ddlOrganization" />
                    <telerik:AjaxUpdatedControl ControlID="rapUserGrid" />
                    <telerik:AjaxUpdatedControl ControlID="rgPendingTokenConfirmations" />
                </UpdatedControls>
            </telerik:AjaxSetting>
            <telerik:AjaxSetting AjaxControlID="ddlOrganization">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="rgPendingConfirmations" />
                    <telerik:AjaxUpdatedControl ControlID="rgPendingTokenConfirmations" />
                </UpdatedControls>
            </telerik:AjaxSetting>
            <telerik:AjaxSetting AjaxControlID="rgPendingConfirmations">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="rgPendingConfirmations" />
                </UpdatedControls>
            </telerik:AjaxSetting>
            <telerik:AjaxSetting AjaxControlID="rgPendingTokenConfirmations">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="rgPendingTokenConfirmations" />
                </UpdatedControls>
            </telerik:AjaxSetting>
        </AjaxSettings>
    </telerik:RadAjaxManager>
    <asp:Localize runat="server" meta:resourcekey="IntroInstructions">This section allows you to confirm pending <b>customer administrators.</b></asp:Localize>
    <br />
    <br />
    <table>
        <tr>
            <td>
                <asp:Localize runat="server" Text='<%$ Resources:VirtualOfficeResources, ServiceProviderLabel %>'>Service Provider:</asp:Localize>
            </td>
            <td>
                <telerik:RadComboBox ID="ddlServiceProvider" runat="server" AppendDataBoundItems="true"
                    DataTextField="Name" DataValueField="OrganizationID" AutoPostBack="true" OnSelectedIndexChanged="OnSelectedServiceProviderChanged">
                    <Items>
                        <telerik:RadComboBoxItem Value="-1" Text="<%$ Resources:VirtualOfficeResources, ServiceProviderDropDownPlaceholder %>" />
                    </Items>
                </telerik:RadComboBox>
            </td>
            <td style="padding-left: 1em;">
                <asp:Localize runat="server" Text='<%$ Resources:VirtualOfficeResources, OrganizationLabel %>'>Organization:</asp:Localize>
            </td>
            <td>
                <telerik:RadComboBox ID="ddlOrganization" runat="server" AppendDataBoundItems="True"
                    DataTextField="Name" DataValueField="OrganizationID" AutoPostBack="true" OnSelectedIndexChanged="OnSelectedOrganizationChanged">
                    <Items>
                        <telerik:RadComboBoxItem Value="-1" Text="<%$ Resources:VirtualOfficeResources, OrganizationDropDownPlaceholder %>" />
                    </Items>
                </telerik:RadComboBox>
            </td>
        </tr>
    </table>
    <br />
    <telerik:RadGrid ID="rgPendingConfirmations" runat="server" EnableEmbeddedSkins="False"
        Skin="SparxentBlack" GridLines="None" AutoGenerateColumns="False" AllowSorting="True"
        OnNeedDataSource="OnNeedPendingConfirmations" OnUpdateCommand="OnConfirmUser">
        <MasterTableView DataKeyNames="EmailAddress" meta:resourcekey="GridMasterTableView">
            <Columns>
                <telerik:GridTemplateColumn ItemStyle-Width="1em" UniqueName="UpdateColumn">
                    <ItemTemplate>
                        <asp:ImageButton runat="server" ImageUrl="~/Skins/SparxentBlack/Grid/Update.gif"
                            CommandName="Update" AlternateText="Confirm" ToolTip="Confirm" meta:resourcekey="PendingConfirmConfirmBtn" />
                    </ItemTemplate>
                </telerik:GridTemplateColumn>
                <telerik:GridBoundColumn DataField="EmailAddress" HeaderText="Email Address" SortExpression="EmailAddress"
                    meta:resourcekey="PendingConfirmEmailColumn">
                </telerik:GridBoundColumn>
                <telerik:GridBoundColumn DataField="FirstName" HeaderText="First Name" SortExpression="FirstName"
                    meta:resourcekey="PendingConfirmFirstNameColumn">
                </telerik:GridBoundColumn>
                <telerik:GridBoundColumn DataField="LastName" HeaderText="Last Name" SortExpression="LastName"
                    meta:resourcekey="PendingConfirmLastNameColumn">
                </telerik:GridBoundColumn>
            </Columns>
        </MasterTableView>
    </telerik:RadGrid>
    <br />
    <asp:Localize runat="server" meta:resourcekey="PendingTokenInstructions">
        The following are pending token confirms that have been sent out but have not been
        acted upon (e.g no user has been created yet).
    </asp:Localize>
    <br />
    <br />
    <telerik:RadGrid ID="rgPendingTokenConfirmations" runat="server" EnableEmbeddedSkins="false"
        Skin="SparxentBlack" GridLines="None" AutoGenerateColumns="false" AllowSorting="true"
        OnNeedDataSource="OnNeedPendingTokenConfirmations">
        <MasterTableView CommandItemDisplay="Top" meta:resourcekey="GridMasterTableView">
            <Columns>
                <telerik:GridBoundColumn DataField="UserEmailAddress" HeaderText="Email Address"
                    SortExpression="UserEmailAddress" meta:resourcekey="PendingTokenEmailColumn">
                </telerik:GridBoundColumn>
            </Columns>
            <CommandItemTemplate>
                <div class="gridCommandItemDiv">
                    <asp:LinkButton ID="btnResendTokens" runat="server" CssClass="gridCommandItem" OnClick="OnResendTokens"
                        Text="<%$ Resources:VirtualOfficeResources, ResendPendingTokensLabel %>"></asp:LinkButton>
                </div>
            </CommandItemTemplate>
        </MasterTableView>
    </telerik:RadGrid>
    <telerik:RadAjaxLoadingPanel ID="loadingPanel" runat="server" Transparency="0" IsSticky="true">
        <asp:Panel ID="innerLoadingPanel" runat="server" CssClass="innerLoadingPanel">
            <table>
                <tr>
                    <td>
                        <asp:Image ID="Image1" runat="server" ImageUrl="~/Skins/SparxentBlack/Common/loading.gif" />
                    </td>
                    <td style="color: White; padding-left: 1em; font-size: larger">
                        <asp:Localize runat="server" Text="<%$ Resources:VirtualOfficeResources, LoadingLabel %>"></asp:Localize>
                    </td>
                </tr>
            </table>
        </asp:Panel>
        <ajax:AlwaysVisibleControlExtender runat="server" HorizontalSide="Center" VerticalSide="Middle"
            VerticalOffset="150" HorizontalOffset="100" TargetControlID="innerLoadingPanel">
        </ajax:AlwaysVisibleControlExtender>
    </telerik:RadAjaxLoadingPanel>
</asp:Content>

So the basic workflow is that we select a service provider in the first radcombobox, which then updates the list of organizations in the second radcombobox. What's happening is that we select the service provider, the loading panel appears, and the exception is thrown. Any ideas?
Chris
Top achievements
Rank 1
 answered on 26 Oct 2010
2 answers
87 views
Hi:
I am porting a 3.5 web app to 4.0.  This app started as a AjaxToolkit and Telerik was added later.  I got 4.0 dll added and the web site built, but my RadWindows when I close via the following:
Protected Sub CloseForm()
    ScriptManager.RegisterStartupScript(Page, Page.GetType(), "Close", "GetRadWindow().Close();", True)
End Sub
The window closes and relaunches.  What to do?
Phil
Phil
Top achievements
Rank 2
 answered on 26 Oct 2010
3 answers
116 views
Hello,

I have my scheduler and everything is automatically localized except for the Timeline (date). Is this an issue or should it be manually applied? If so, how do I do this?

I am using a Base page for setting the Localization and inheriting all my pages from this.

Thanks in advance!

Gil
Peter
Telerik team
 answered on 26 Oct 2010
6 answers
154 views
Hi,

I use a customized Linkmanager.ascx

How can I detect in the Linkmanager.ascx which editor openened the Linkmanager when there are multiple RadEditors on the page?

BR
Marc
Rumen
Telerik team
 answered on 26 Oct 2010
4 answers
268 views
Hi,
I'm trying to uninstall "Telerik.Web.UI_2010_2_826_Trial" so that I can install the latest version, however during uninstall, I get the following message:

"Telerik RadControls Setup Wizard ended prematurely because of an error.,...."

Please see the link below for the log file generated by the msi installer.
http://cid-694a1ac153d587e5.office.live.com/self.aspx/Public/install.log.zip

Many Thanks,
Henry Wu
Henry
Top achievements
Rank 1
 answered on 26 Oct 2010
1 answer
47 views

Hi , We are used hirarchichal grid, The detailed table, expanded row’s columns are not getting aligned to the columns in the parent row.  We have tried adjusting the right padding and right margin for the classes in .rgMasterTable as well as .rgDetailTable but none worked. we  even tried giving our own class definition in the code behind but that was getting overwritten by the default Rad classes.

Please let us know the workaround for this. Screenshot is shown below. 

Thanks
Rajani

 

 

Marin
Telerik team
 answered on 26 Oct 2010
1 answer
540 views
Hi,

I have a scenario where i have two GridBoundColumns. am loading the data from the database to these columns.
i want to add more rows to the existing grid. I want to have a text box to be added in the footer and have a button. on the button click i wanted to the data in the textbox to the gridboundcolumn. Help me how to add footer template with a button and a text box and extract the values.

i have temporarily added a textbox and button below the grid and achieved but i want to achieve the same within the grid.
Pls. help me

Thanks
Jidesh
Marin
Telerik team
 answered on 26 Oct 2010
1 answer
132 views
Hi:

I am testing a RadComboBox inside of a basic formview that is for a drop down selection of the months in a year. I want to display the months in the year in the combobox, then store the corresponding value in the database (e.g. If March is selected, then store "3").

I have set up the radcombobox as follows:

<telerik:RadComboBox ID="RadComboBox1"
                     runat="server"
                     Label="Month"
                     SelectedValue='<%# Bind("Month") %>'
                     LabelCssClass="right_Aligned_Labels"
                     MaxLength="2"
                     >
                     <Items>
                        <telerik:RadComboBoxItem runat="server" text="January" value="1" />
                        <telerik:RadComboBoxItem runat="server" text="February" value="2" />
                        <telerik:RadComboBoxItem runat="server" text="March" value="3" />
                        <telerik:RadComboBoxItem runat="server" text="April" value="4" />
                        <telerik:RadComboBoxItem runat="server" text="May" value="5" />
                        <telerik:RadComboBoxItem runat="server" text="June" value="6" />
                        <telerik:RadComboBoxItem runat="server" text="July" value="7" />
                        <telerik:RadComboBoxItem runat="server" text="August" value="8" />
                        <telerik:RadComboBoxItem runat="server" text="September" value="9" />
                        <telerik:RadComboBoxItem runat="server" text="October" value="10" />
                        <telerik:RadComboBoxItem runat="server" text="November" value="11" />
                        <telerik:RadComboBoxItem runat="server" text="December" value="12" />
                     </Items>
</telerik:RadComboBox>

My formview is set to default to edit mode. The record I am testing with has the month column value set to "9" so I know the value is in the item list. However, when I run this program I get the error:

Selection out of range
Parameter name: value

I have looked at many posts on this issue, but I still do not know why I am getting this error. The database column I am binding to definitely has a valid value in it (e.g. "9") which should cause "September" to display based on the current record. Yet, I get this error.

This seems like such a simple requirement. How can I get this working?

Thanks, Dan

Here is the stack trace:

[ArgumentOutOfRangeException: Selection out of range
Parameter name: value]
   Telerik.Web.UI.RadComboBox.PerformDataBinding(IEnumerable dataSource) +172
   Telerik.Web.UI.RadComboBox.OnDataSourceViewSelectCallback(IEnumerable data) +471
   System.Web.UI.DataSourceView.Select(DataSourceSelectArguments arguments, DataSourceViewSelectCallback callback) +31
   Telerik.Web.UI.RadComboBox.OnDataBinding(EventArgs e) +1234
   Telerik.Web.UI.RadComboBox.PerformSelect() +37
   System.Web.UI.WebControls.BaseDataBoundControl.DataBind() +73
   Telerik.Web.UI.RadComboBox.DataBind() +68
   System.Web.UI.Control.DataBindChildren() +211
   System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding) +102
   System.Web.UI.Control.DataBind() +15
   System.Web.UI.Control.DataBindChildren() +211
   System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding) +102
   System.Web.UI.Control.DataBind() +15
   System.Web.UI.Control.DataBindChildren() +211
   System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding) +102
   System.Web.UI.Control.DataBind() +15
   System.Web.UI.Control.DataBindChildren() +211
   System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding) +102
   System.Web.UI.WebControls.FormView.CreateChildControls(IEnumerable dataSource, Boolean dataBinding) +1461
   System.Web.UI.WebControls.CompositeDataBoundControl.PerformDataBinding(IEnumerable data) +57
   System.Web.UI.WebControls.FormView.PerformDataBinding(IEnumerable data) +12
   System.Web.UI.WebControls.DataBoundControl.OnDataSourceViewSelectCallback(IEnumerable data) +114
   System.Web.UI.DataSourceView.Select(DataSourceSelectArguments arguments, DataSourceViewSelectCallback callback) +31
   System.Web.UI.WebControls.DataBoundControl.PerformSelect() +142
   System.Web.UI.WebControls.BaseDataBoundControl.DataBind() +73
   System.Web.UI.WebControls.FormView.DataBind() +4
   System.Web.UI.WebControls.BaseDataBoundControl.EnsureDataBound() +82
   System.Web.UI.WebControls.FormView.EnsureDataBound() +166
   System.Web.UI.WebControls.CompositeDataBoundControl.CreateChildControls() +72
   System.Web.UI.Control.EnsureChildControls() +87
   System.Web.UI.WebControls.CompositeDataBoundControl.get_Controls() +15
   Telerik.Web.UI.RadFormDecorator.FindDataControls(Control parent) +80
   Telerik.Web.UI.RadFormDecorator.FindDataControls(Control parent) +437
   Telerik.Web.UI.RadFormDecorator.FindDataControls(Control parent) +437
   Telerik.Web.UI.RadFormDecorator.FindDataControls(Control parent) +437
   Telerik.Web.UI.RadFormDecorator.FindDataControls(Control parent) +437
   Telerik.Web.UI.RadFormDecorator.FindDataControls(Control parent) +437
   Telerik.Web.UI.RadFormDecorator.FindDataControls(Control parent) +437
   Telerik.Web.UI.RadFormDecorator.DecorateAspNetDataControls() +68
   Telerik.Web.UI.RadFormDecorator.ControlPreRender() +758
   Telerik.Web.UI.RadWebControl.OnPreRender(EventArgs e) +47
   System.Web.UI.Control.PreRenderRecursiveInternal() +80
   System.Web.UI.Control.PreRenderRecursiveInternal() +171
   System.Web.UI.Control.PreRenderRecursiveInternal() +171
   System.Web.UI.Control.PreRenderRecursiveInternal() +171
   System.Web.UI.Control.PreRenderRecursiveInternal() +171
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +842
Simon
Telerik team
 answered on 26 Oct 2010
4 answers
217 views
When selecting a an amount of text in the radeditor, I go about using the buttons provided by telerik to (in this order):
1) Change the font size
2) Change the font style
3) Any of bold or underline or italic buttons

1 and 2 behave as I would expect, when I get to 3, it changes the text back to the original font style and size and applies the bold or underline or italic property.

Additional information:
Problem seems to be specific to IE8. The sequence works in Firefox

Please assist with a solution
Thanks
Jonathan
Jonathan
Top achievements
Rank 1
 answered on 26 Oct 2010
1 answer
84 views

I have a design issue. When I get to the page for the first time the radupload control (in a usercontrol) looks normal. When I then delete the uploaded file and show the same user control again RadUpload looks strange. The button fall down and to the left of the input field a UL disc shows. If I set the EnableFileInputSkinning="false" the disc and the left-padding still be there. And the input field and the button height are very small. I would like it to retain its appearance. What’s the problem?
(2010.2.713.40)

Magnus
Top achievements
Rank 1
 answered on 26 Oct 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Andrey
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Andrey
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?