Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
66 views
Hi,  

I want to hide the 2 lines that appear to the left and right of an event on the month view.  These are pictured in the attached sample.

How would I do that?

Many thanks,

Jon

Jon
Top achievements
Rank 1
 answered on 18 Dec 2013
3 answers
240 views
Hi,

Can someone tell me how to open window file dialog when focus is on Radasyncupload control and user presses "enter" key on keyboard.

Regards,
Jai
Shinu
Top achievements
Rank 2
 answered on 18 Dec 2013
3 answers
323 views
hello all ,

I have a radgrid that contains a Template column with radnumericTextBox ,
Users will fill these numericTextBox, every textbox should have a value less than previous one ,

<telerik:GridTemplateColumn HeaderText="value" UniqueName="value">
<ItemTemplate>            
 
<telerik:RadNumericTextBox runat="server" ID="value" NumberFormat-AllowRounding="false" >
     <NumberFormat GroupSeparator=""/>
    <ClientEvents OnValueChanged="checkValues" />  
    </telerik:RadNumericTextBox>
</ItemTemplate>           
 
</telerik:GridTemplateColumn>

if user add 20 in first row ,
second row should contains 20 or less ...

in "checkValues" function , i want to read value of previous row to compare with current value ..
how can i get it based on row index ?



How can i achieve this task ?
Loyal User
Top achievements
Rank 1
 answered on 18 Dec 2013
2 answers
101 views
Hi,

I am trying to get a client side event to fire when the close ('X') button is clicked while trying to Create a new appointment in the RadScheduler. My client side event doesn't get called.

Any ideas on how to get this to work?

Here is my client side code.

$telerik.$("#RadScheduler1_Form_AdvancedEditCloseButton").click(function () {
                alert('Clicked');
                InsertCancel();
            });

Insert Cancel is a function I created to do something else. But I can't even get the alert to show anything.
Tried debugging in Chrome but it never stops on this line.

Thanks,
Kevin
Plamen
Telerik team
 answered on 18 Dec 2013
3 answers
186 views
Hi!

I have a problem with events not triggered the second time in RadOrgChart.
In my project I need both to add and remove nodes. Adding nodes works really nice with the drag and drop functionality, but removing is more complicated. To solve this I added an asp:Button inside the ItemTemplate that fires the event of removing a node. This works fine when removing one node. But when I try to remove the next node the event will never get fired - what happens is that I get a postback (because of the button) but it never triggers the event. On the other hand, if I again try to press the button, the event will be called. I am working with dynamically created data so to be certain that the behaviour is not depending on this I tried changing the RadOrgChart to an asp:Repeater to test the behaviour, but this case proved to work - the remove event was called every time when using the Repeater. This leads me to believe there is some sort of bug with RadOrgChart. To be perfectly clear about what I did, I'll give you the aspx code and the situation step by step:

1. Page is loaded. I press the button of one of the nodes and the delete event is called, which removes this node.
2. I press the button of another node (because my first node is deleted) and I get a postback, but the event is not fired.
3. I press the button of the same node as (2) and I get a postback AND the event gets called.

<telerik:RadOrgChart runat="server" ID="RadOrgChart1" DataTextField="Name" DataFieldID="ID" DataFieldParentID="ParentID">
    <ItemTemplate>
        <asp:Button runat="server" ID="ButtonRemoveBox" OnClick="ButtonRemoveBox_Click" />
    </ItemTemplate>
</telerik:RadOrgChart>

Is this a know bug or what could I do to trigger the event? (I could of course do a Response.Redirect() in my event to the same page but that is a nasty solution)
Thanks for helping!
Plamen
Telerik team
 answered on 18 Dec 2013
3 answers
203 views
In the documentation under Unsupported Scenarios, the problem of a server farm is described.  This makes sense, but I'm  not sure I understand the workaround using Session state:

"To avoid this behavior, you should store the BinaryImage in the Session, and configure your server environment to use out of process Session State (i.e. the Session object is shared among different processes and servers)"

How would I use the BinaryImage control with Session state?

I don't see an "ImageStorageLocation" property, such as is used by RadCaptcha to solve this problem.

Thanks
Angel Petrov
Telerik team
 answered on 18 Dec 2013
1 answer
140 views
Dear Support team,

We are looking for the solution for the issue on our radgrid which we are trying to show the detailtableview.

We are expecting the radgrid should be like this,

pls find the attachment and support me ASAP.

Eyup
Telerik team
 answered on 18 Dec 2013
5 answers
90 views
Hi Guys,

When I set the Height property of a tile, part of the content showed on the tile before easing animation occurred.  And when easing animation happened, the content did not completely scroll off.

I understand that the Shape property is important for proper tile easing to occur, but shouldn't there be a way for the height of the tile to be increased and easing to work properly?

Also, is there anyway for a tile to automatically increase in height to handle whatever content I place in the tile?

Bryan
Stanimir
Telerik team
 answered on 18 Dec 2013
2 answers
705 views
Hi Everyone,

I am having an error (Cannot Set Property 'scriptsFailed' of undefined) which has to do with the webresource.axd when I access my application from outside our domain. I have no errors when running the app inside out domain.

I have attached an image of the error I am getting.

I am assuming that access to the webresource.axd is somehow not setup to allow external requests or something but all of my searching on Google has not turned up anything helpful.

Here is my RadScriptManager declaration:

<telerik:RadScriptManager runat="server" ID="MainRadScriptManager">
    <Scripts>
        <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.Core.js" />
        <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQuery.js" />
    </Scripts>
    <CacheSettings Enabled="true" />
    <CdnSettings TelerikCdn="Enabled" />
</telerik:RadScriptManager>

Here is my system.webserver section of my web config:

<system.webServer>
    <modules runAllManagedModulesForAllRequests="true">
        <remove name="UrlRoutingModule" />
        <add name="UrlRoutingModule" type="System.Web.Routing.UrlRoutingModule, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
        <remove name="RadUploadModule" />
        <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule" preCondition="integratedMode" />
        <remove name="RadCompression" />
        <add name="RadCompression" type="Telerik.Web.UI.RadCompression" preCondition="integratedMode" />
        <add name="ScriptModule" preCondition="integratedMode" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    </modules>
    <validation validateIntegratedModeConfiguration="false" />
    <handlers>
        <remove name="ChartImage_axd" />
        <remove name="ScriptHandlerFactory" />
        <remove name="ScriptHandlerFactoryAppServices" />
        <remove name="ScriptResource" />
        <remove name="Telerik_Web_UI_SpellCheckHandler_axd" />
        <remove name="Telerik_Web_UI_DialogHandler_aspx" />
        <remove name="Telerik_Web_UI_WebResource_axd" />           
        <remove name="Telerik_RadUploadProgressHandler_ashx" />
        <remove name="WebServiceHandlerFactory-Integrated" />
         
        <add name="ChartImage_axd" path="ChartImage.axd" type="Telerik.Web.UI.ChartHttpHandler" verb="*" preCondition="integratedMode" />
        <add name="ScriptResource" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
        <add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
        <add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
        <add name="Telerik_Web_UI_WebResource_axd" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" preCondition="integratedMode" />
        <add name="Telerik_RadUploadProgressHandler_ashx" path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler" verb="*" preCondition="integratedMode" />
        <add name="Telerik.Web.UI.WebResource" path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI" />
        <add name="Telerik_Web_UI_SpellCheckHandler_axd" path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler" verb="*" preCondition="integratedMode" />
        <add name="Telerik_Web_UI_DialogHandler_aspx" path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler" verb="*" preCondition="integratedMode" />
        <add name="UrlRoutingHandler" preCondition="integratedMode" verb="*" path="UrlRouting.axd" type="System.Web.HttpForbiddenHandler, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    </handlers>
</system.webServer>

If anyone can offer any help or suggestions, I would really appreciate it as I feel like I am dealing with a black box here.

Thank you.
Bozhidar
Telerik team
 answered on 18 Dec 2013
1 answer
120 views
Hi,

I have a grid with a link button:

<telerik:GridButtonColumn HeaderStyle-Width="80px" ItemStyle-Width="80px" ButtonType="LinkButton" UniqueName="Block" />

on ItemDataBound I add onclientclick event that opens a confirmation window:

    function UserBlock() {
        $.confirm({
            'title': 'Covertix',
            'message': 'Are you sure you want to block this user?',
            'icon': '../Images/Icons/System/garbage.png',
            'container': '#MainBoxFull',
            'buttons': {
                'No': {
                    'class': 'CovertixButtonForMsgBox',
                    'action': function() {
                        $.confirm.hide();
                    }
                },

                'Yes': {
                    'class': 'CovertixButtonForMsgBox',
                    'action': function() {
                        $.confirm.hide();
                    }
                }
            }
        });

        return false;
    }


Inside the 'Yes' callback, I want to fire a click event or block command.
Is it possible?
I tried in many ways without success.
Shinu
Top achievements
Rank 2
 answered on 18 Dec 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?