Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
161 views
Hello,
When performing a spell check the spell checker states "Misspelled words are highlighted in yellow." but that is not the case. Is there a way to change the wording of that text or remove it?

Thanks,
Brian
Brian Goldman
Top achievements
Rank 2
 answered on 07 Aug 2008
1 answer
81 views
Hi,

Is there an easy way to open a radwindow depending on what field you click so for eample

Col 1       Col2      Col3
1              2            3

If i click the 2 in Col2 it will open test1.aspx passing the key from col1

Thanks

Paul

Paul
Top achievements
Rank 1
 answered on 07 Aug 2008
1 answer
94 views
I have a schedule calendar and would like to embed and HTML link into the calendar for users to click and take them to a different page. I have put the link into the database "subject" field but it just displays the html code. Can I put links into the scheduler?
Atanas Korchev
Telerik team
 answered on 07 Aug 2008
4 answers
151 views

I have a single radgrid in a control, which I want to display on the same page three times, as follows:

   
    <UC:MySubscriptionGrid ID="MySubscriptionGrid" runat="server" subType="T"  /> 
    <br /> 
    <UC:MySubscriptionGrid ID="MySubscriptionGrid1" runat="server" subType="U"  /> 
    <br /> 
    <UC:MySubscriptionGrid ID="MySubscriptionGrid2" runat="server" subType="F"  /> 

 I have the ajax manager on the master page, and then the radajaxproxy on the MySubscriptionGrid control itself as follows:

<telerik:RadAjaxManagerProxy ID="AjaxManagerProxy1" runat="server">  
 <AjaxSettings>    
         <telerik:AjaxSetting AjaxControlID="RadGrid_Subs">    
                <UpdatedControls>    
                    <telerik:AjaxUpdatedControl ControlID="RadGrid_Subs"   />    
                </UpdatedControls>    
            </telerik:AjaxSetting>   
            <telerik:AjaxSetting AjaxControlID="btnSubPanelMinus">    
                <UpdatedControls>    
                    <telerik:AjaxUpdatedControl ControlID="pSubscriptions"  />    
                    <telerik:AjaxUpdatedControl ControlID="pButton"  /> 
                </UpdatedControls>    
            </telerik:AjaxSetting>    
            <telerik:AjaxSetting AjaxControlID="btnSubPanelPlus">    
                <UpdatedControls>    
                    <telerik:AjaxUpdatedControl ControlID="pSubscriptions" LoadingPanelID="RadAjaxLoadingPanelSubscriptions"  />    
                    <telerik:AjaxUpdatedControl ControlID="pButton" LoadingPanelID="RadAjaxLoadingPanelSubscriptions" /> 
                </UpdatedControls>    
            </telerik:AjaxSetting>    
            </AjaxSettings> 
        </telerik:RadAjaxManagerProxy> 

This works ok, except when I click off to a different page then click the back button.  After clicking the back button, the Paging and Sorting images on the grid are missing.  In Firefox, I get the dread "Invalid Viewstate" error.  Is there a different way I should be setting this up?

With standard Microsoft ajax, I would just wrap an update panel around each instance of the control.  I tried something similar with the RadAjax panel, but that does not seem to work.

Any suggestions?

Thanks.
Angie
Top achievements
Rank 1
 answered on 07 Aug 2008
5 answers
180 views
I have followed a number of posts here to get the export button to work whilst using a RadAjaxManagerProxy. It does, work in the sense that the page postback is done via AJAX. The loadingPanel appears and it seems to start doing its stuff. However, this is where the success ends. It simply stops loading and then presents me with the same page (except bizarely this time some of the pages elements have been nudged to the right by about 50 pixels).

I followed some forums to wire up the OnRequestStart method to the RadAjaxManager in the master.template. As I said, this seems to be working in the sense that the postback is now handled by AJAX and the loading panel. For clarity, this is the code i have used to achieve this part:

RadAjaxManager oAjaxMan = (RadAjaxManager)this.Page.Master.FindControl("RadAjaxManager1");
            oAjaxMan.ClientEvents.OnRequestStart = "mngRequestStarted";

Now, as mentioned this is where my luck runs out. Is there anything i am missing? I have added the following to the RadGrid:

<ExportSettings ExportOnlyData="true" IgnorePaging="true" OpenInNewWindow="true"></ExportSettings>

So i would expect a new page to open and present me with the open / save dialog box. But it doesn't. One other thing i noticed when following instructions in other posts was to make use of a AjaxSettingCreating method... but i haven't done this as i do not know what it is for. Maybe this is where i have gone wrong?

Really hoping someone is able to help. Please let me know if you need any extra information from me.

Thanks in advance

Ben
Ronnie
Top achievements
Rank 1
 answered on 07 Aug 2008
2 answers
228 views
Hi,

I am trying to put together a toolbar that uses completely custom images for the buttons. The problem I am having is that the Text for the button appears to get hidden behind the images, so all you can see is the tab. Here is my example mark-up code:

<div>

<telerik:RadToolBar ID="RadToolBar1" runat="server" CssClass="toolbar" Skin="" EnableEmbeddedSkins="false" >

<Items>

<telerik:RadToolBarButton Text="Dashboard" Value="btnDashboard" Group="Toolbar" CheckOnClick="true" AllowSelfUnCheck="false" CssClass="button" ImageUrl="../normal-item.gif" CheckedImageUrl="../selected-item.gif" />

<telerik:RadToolBarButton Text="Summary" Value="btnSummary" Group="Toolbar" CheckOnClick="true" AllowSelfUnCheck="false" CssClass="button" ImageUrl="../normal-item.gif" CheckedImageUrl="../selected-item.gif" />

<telerik:RadToolBarButton Text="Projects" Value="btnProjects" Group="Toolbar" CheckOnClick="true" AllowSelfUnCheck="false" CssClass="button" ImageUrl="../normal-item.gif" CheckedImageUrl="../selected-item.gif" />

</Items>

</telerik:RadToolBar>

</div>

Is there something I am doing wrong or is simply not possible to overlay text on top of the image for the button?

Thanks,

Ben

Benjamin
Top achievements
Rank 1
 answered on 07 Aug 2008
2 answers
92 views
Hello,

Basic question, but I can't find the answer - is there a separate DLL I can install if I'm only using the Editor control instead of the entire Web.UI.dll?  I'd rather not have to load everything when I'm only using one piece of the suite - thanks for your help.
JL
Top achievements
Rank 1
 answered on 07 Aug 2008
2 answers
184 views
I have a button inside the grid. From that button I want to open a window that has a combo box in it.
After the user selects a value from the combo i want the control to return to the button and do further processing based on the value returned from the window.

So far I have been able to open a window containing a combo box. However my combo box looks like a textbox with a select keyword next to it.
After I click on my combo box I get the list of items from the database but it is displayed as a list with bullets and I am not able select any value.

It doesn't look like a combo box.

please help.

Below is my code on the modal dialog page that contains the combo box:

<

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

<telerik:RadScriptManager ID="RadScriptManager1" runat="server">

</telerik:RadScriptManager>

<div>
<telerik:RadComboBox ID="ddlReportingPeriodEndDate" runat="server" EnableEmbeddedSkins="false" EnableLoadOnDemand="false" AppendDataBoundItems="false" LoadingMessage="Loading dates..." MarkFirstMatch="True" ToolTip="Select report period end date" AllowCustomText="false" CssClass="editfield" Width="110px">
</telerik:RadComboBox>

</div>

</form>

My Code to cal the window is:

function

ShowDialogPopup()

{

var oWnd = radopen("NewDialog.aspx");

}

which is called from the onclientclick event in the button.

newbie
Top achievements
Rank 1
 answered on 07 Aug 2008
5 answers
132 views
I have a tabtrip control. I want that tabstrip to be floating
Is it possible to do a tabstrip a floating one or we have to use anyother control to make it floating

Help Please

John Yu
Top achievements
Rank 1
 answered on 07 Aug 2008
4 answers
156 views
Hi,

I am integrating Rad Spell  spell checker in MOSS 2007 application. I have done all the steps mentioned in the technical help provided.

When I add RadSpell in a page layout and specify the ControlToCheck property to a text editor. The page gives error when opened through MOSS. So can I add RadSpell control to a layout page?

My sharepoint designer is not recognizing  asp:script manager. Is it vital for RadSpell? Are there any extra steps to configure RadSpell in  MOSS pages?

Kindly provide a solution to this problem.

Regards,
Manish Kaushal
George
Telerik team
 answered on 07 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?