Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
155 views
Hello,

Is there a way to disable/bypass the dialog that allows you to select between editing/deleting a single occurrence or the entire series in a recurring appointment? Right now we don't want to allow single-occurrence editing (don't want to allow recurrence exceptions), so I'd like to bypass that dialog altogether and go straight into editing/deleting the entire recurrence. Is this possible?

Thanks,
Landon
Landon
Top achievements
Rank 1
 answered on 05 Jan 2011
3 answers
65 views
HI,
Thanks for this load on demand fixes from the following link. 
http://www.telerik.com/community/forums/aspnet-ajax/combobox/fix-load-on-demand-does-not-work-correctly-in-q2-2009-sp1.aspx

I added following code of block below scrpt manager.

<script type="text/javascript">    
    Telerik.Web.UI.RadComboBox.prototype.get_endOfItems = function() { return false; };    
</script>    
 

I was able to get results after pressing more than one character. But this solution raised me another issue.

I Used Property ShowMoreResultsBox="true" in combo box because I have about 16000 reocords in Combo Box, and I display 500 records on a page. The Button to get next 500 records works fine till i dont type any character and when I press two or more characters the my webservice return 2000 records, and I display 500 but I am not able to get Next 500 records, becuase the button does not clickable ot just return false; (I guess becuase of this fix).
The issue is on production and We dont want to update with new Telerik dlls.
Please help me to fix this issue.

Thanks
Aviii
Simon
Telerik team
 answered on 05 Jan 2011
9 answers
197 views
Hi. I wondered if anyone can offer some quick help. I have downloaded the new release of the ajax controls and I tried to add a Grid control and got an error message. When that failed I tried to add a ListView control instead (to see if it was specific to the grid control). I get an error message:

"There was an error rendering the control. Could not load file or assembly 'Telerik.Web.UI, Version=2010.3.1215.35, Culture=neutral, PublicKeyToken=......" or one of its dependencies. The system cannot find the file specified"

However, the existing Telerik controls that I already have on the site that I'm developing are working fine.

Thanks (and Happy New Year)
Paul
Top achievements
Rank 1
 answered on 05 Jan 2011
5 answers
1.8K+ views
I would like to know what I need to put for the OnDetailTableDataBind if I have the following scenario:

1) Parent Table
    2) Child Table
        3) Child table

If I only have one child table, I know how to get that done. But if I have two child tables as described above, where do I place the OnDetailDatabind property. Presently, I only see where you can enter this property once on the RadGrid tag.
Marin
Telerik team
 answered on 05 Jan 2011
1 answer
59 views
Dear Team.

I Have Attached Screen shot for My problem..Please Give good Solutions..I except quickly..

With regards.
Kannadasan
Simon
Telerik team
 answered on 05 Jan 2011
1 answer
71 views
Hi

I need to change the position of the Cancel and Update buttons of the RadGrid.

I have tried the EditFormColumnIndex property but doesn't work!

Regards
Daniel
Telerik team
 answered on 05 Jan 2011
11 answers
108 views
Hi,
 I have a problem in that with custom tools files, I am unable to utilise the feature 'Use RadEditor to edit HTML fields' on customised tools files for the publishing areas in SharePoint. Whenever I click 'check in to share draft' the changes are lost.

 Following a recent outage on our SharePoint farm we were forced to restore one of the servers (application server) from tape, and remove & re-add the web servers to the farm. It seems that in doing this, the Telerik RAD Editor for SharePoint no longer recognises the custom tools files for different webs, where previously it had worked fine without any problems.

 I've gone through many possible solutions to try and fix the problem, such as removing the standard tools files and re-naming the custom tools files to the standard names - e.g: Re-naming 'ToolsFile{950f1d58-8d7b-41f2-a072-982c9a705168}.xml' to 'ToolsFile.xml'. I've even copied the original configuration files to a new web ID, but still the same problem occurs - I am unable to use the RadEditor to edit HTML/publishing fields in SharePoint. Whenever I click 'check in to share draft' the changes are lost.

 The web part works perfectly normally with the customised toolbars - would this be because the web part requires the user to click on 'Ok' to save the changes back to the page, rather than the HTML field, which seems as though it doesn't recognise the user clicking on 'check into draft' for customised menu's.

Can you advise what we need to do with this please? I've a suspicion that we need to either retract and redeploy the solution to the farm or completely re-install the editor (or upgrade to a later, more current version!).

The version of the editor we are using is 5.7.1

Thanks,
Jason.
Jason Brownhill
Top achievements
Rank 1
 answered on 05 Jan 2011
3 answers
156 views
hi,
   I want to resize RadDock both vertically as well as horizontally.
Is it posible?

Note:
      I am using Telerik version - (Latest) Q3 2010
code-
<telerik:RadDockLayout runat="server" ID="RadDockLayout1" OnSaveDockLayout="RadDockLayout1_SaveDockLayout"
                                OnLoadDockLayout="RadDockLayout1_LoadDockLayout" >
                                <telerik:RadDockZone runat="server" ID="RadDockZone1" Width="300" MinHeight="500"
                                   Style="float: left; margin-right: 5px" >
                                </telerik:RadDockZone>
 </telerik:RadDockLayout>

I want a RadDock only in RadDockZone.
Pero
Telerik team
 answered on 05 Jan 2011
1 answer
156 views
We have a web user control that is used to display a logo and title on a master page, on a site that is using forms authentication. The control displays properly on pages when the user is authenticated, but on the login page only the text shows up, not the image. Here's the web control;

<%@ Control Language="VB" AutoEventWireup="false" CodeFile="LogoAndTitle.ascx.vb"
    Inherits="assets_controls_LogoAndTitle" %>
<link href="../css/Site.css" rel="stylesheet" type="text/css" />
<asp:FormView ID="FormViewLogo" runat="server" DataKeyNames="ConfigID" DataSourceID="dsConfig">
    <ItemTemplate>
        <h1>
            <telerik:RadBinaryImage ID="imgLogo" runat="server"
                AlternateText='<%# Eval("PortalName") %>' CssClass="floatleft"
                DataValue='<%# Eval("PortalImage") %>' />
            <asp:Label ID="PortalNameLabel" runat="server" Text='<%# Bind("PortalName") %>' />
        </h1>
    </ItemTemplate>
</asp:FormView>
<asp:ObjectDataSource ID="dsConfig" runat="server" OldValuesParameterFormatString="original_{0}"
    SelectMethod="GetData" TypeName="dsConfigTableAdapters.qryConfigTableAdapter">
</asp:ObjectDataSource>

If the user isn't authenticated (yet), ie on the login page, the label shows up, but not the image. The image is stored in a database table, along with the title.

Any ideas?
Cori
Top achievements
Rank 2
 answered on 05 Jan 2011
2 answers
161 views
Hi Telerik team,

What should I do and what should I take note to upgrade the version? Currently I'm using only the Telerik.Web.UI.dll version 2008, will it affect in any possible way if i remove and replace with version 2010? Is the version 2010 comes with Telerik.Web.UI.dll as well, in which it's enhanced version with 2008 features all available and remained?


Regards.
avdhut salvi
Top achievements
Rank 1
 answered on 05 Jan 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?