Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
319 views
We are having issues with the asyncupload control.  Once a user selects to upload a document, the progress indicator with IE and Firefox in the status bar shows that it is still doing something in the background.

How do I get it to stop?  Users think it's still doing something so they wait but it actually does upload the document if they continue.

Here's the code:

<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %>
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/tr/xhtml11/dtd/xhtml11.dtd">
  
<body class="BODY">
    <form runat="server" id="mainForm" method="post">
    <telerik:RadScriptManager ID="ScriptManager1" runat="server" />
        <telerik:RadAsyncUpload runat="server" ID="AsyncUpload1" Skin="Office2007"
            ReadOnlyFileInputs="true" >
        </telerik:RadAsyncUpload>
    </form>
</body>
</html>
Richard
Top achievements
Rank 1
 answered on 27 Dec 2011
1 answer
130 views
hello...

i always thanks to telerik forum helpers..

i have a question about telerik skin manager.

i want to  apply custom skins in my project .  but it did not apply.

please tell me the way ....  ã… ã… 

i attached screen shot and my source.

mytest page is DemoSkin/FrmDemoSkin.aspx

Thanks for regards..
Richard
Top achievements
Rank 1
 answered on 27 Dec 2011
4 answers
199 views
Hello,
i am trying to set the selected date of a datetimepicker client side, the datetime i am trying to set is of the following format:
15/12/2011 12:00:00 AM
 this is my line of code : rdtpLastDateTime.set_selectedDate(result[0].Maximum); //  result[0].Maximum = 15/12/2011 12:00:00 AM
but the debuger breaks and throws exception: Object doesn't support this property or method
Please help on this topic
Thanks.
Rabih
Top achievements
Rank 1
 answered on 27 Dec 2011
3 answers
154 views
Hi,

I'm trying to style a RedPanelBar (as a submenu) and now I would like to select an li within this menu when it's active. Problem is that the 'rpSelected'-class is added to it's childelement (rpLink). Is there a simple solution to this? And wouldn't it be (more) obvious to add the "rpSelected" and "rpFocused" to the parent-li instead of its childelement? Because it's possible to select a lot of levels deeper into the DOM starting at some element, but you can't even select 1 level up into the DOM, just by CSS. Obviously it's not a problem when using javascript, but I don't want to use that just for styling-issues.

I hope someone comes up with a simple solution I just overlooked. Or even better, I hope this can be changed into the basic functionality of the control... :)

Thanks in advance!

Menno
Ivan Zhekov
Telerik team
 answered on 27 Dec 2011
3 answers
354 views
Hi,

Can you tell me how to hide or remove the border from rad window? Please see attached file it includes an image of the window which has a grey border that I'm trying to remove. The code below is the latest I've tried.
.RadWindow.rwNoTitleBar .rwShadow .rwTitlebar, .RadWindow.rwNoTitleBar .rwShadow .rwTopLeft, .RadWindow.rwNoTitleBar .rwShadow .rwTopRight {
  height: 13px !important;
}

Shinu
Top achievements
Rank 2
 answered on 27 Dec 2011
0 answers
73 views
Hi,
I am facing an issue with RadMenu when I clicks on any sub menu its working fine but
if my mouse go again to some submenu the previous request dies
means I did not get any response.
My menus are simple links to some pages. The menu structure is something like -

Menu1   Menu2   Menu3   Menu4 
SM1->SM11 SM3
SM12
SM2->SM21
SM22
 
when I click on SM11 it redirects me to page SM11.aspx and so on.
Now i after clicking on SM11, I move my mouse on some other submenu like SM2
then this ends my request, and I remains at the same page
I am using Telerik.Web.UI 2010.1.415.20, and IE 8.0.600118702

Thanks
Pankaj Upadhyay
Pankaj
Top achievements
Rank 1
 asked on 27 Dec 2011
0 answers
82 views
Hi,

I am trying to pass (DayRenderEventArgs) e to a newly created EventHandler. After searching on Google I found out that I could use "delegate" (?) to accomplish this, I couldn't find a proper example though...

Please see the next code:

protected void trcCalendarID_OnDayRender(object sender, Telerik.Web.UI.Calendar.DayRenderEventArgs e)
{
    foreach (Control control in trcCalendarID.Controls)
    {
        Button btnPlannen = (Button)control.FindControl("btnPlannenID");
        if (btnPlannen != null)
        {
            //btnPlannen.Click += new EventHandler(btnPlannen_Click); //Pass 'e' as argument/parameter here
        }
    }
}
ConsumentenClaim
Top achievements
Rank 1
 asked on 27 Dec 2011
12 answers
213 views
I attach an image.
There I have a TextBox Multiline with 2 buttons SAve or Cancel.

I need Fire the RadSpell when user Click On Save.
 Steps:
1- Click on Save
2- Automacially Fire RadSpell
3- Save on Data Base

How I can do this? It is posible?

July
Top achievements
Rank 2
 answered on 27 Dec 2011
3 answers
246 views

All,

I have an odd (I think) issue that I would really appreciate some help on. The nut of the issue is that I have a WCF 4.0 service posted in IIS (ASP.NET).

This WCF service needs to be accessible to protocols other than HTTP and is not in ASP.NET compatibility mode.

One of the components interfacing with this WCF service is in fact an ASP.NET site. On one of the pages there are the following controls:

- 2 timers
- RadTextBox
- div tag which in codebehind is being updated (html content)
- RadGrid
- RadAjaxManager (and all of its necessary components (i.e. loading panel))

1 of the timers is set to tick every 1 second, the other every 10 seconds.

During the 1 second timer tick, if the text has changed in the RadTextBox since the last postback, a call to the WCF service is made and the DIV tag is updated. This call returns immediately.

During the 10 second tick, if the text has changed in the RadTextBox since the last postback, a call to the WCF service is made and the RadGrid is updated. This call returns in ~8 seconds.

The code in the timers utilizes the async proxy generated methods for the WCF service and the callbacks handle the appropraite updating of the respective controls.

All of this is handled with RadAjaxManager (timer 1 updates div tag, timer 2 updates radgrid).

This solution works *except* that in the time during the timer 2 execution when a change is detected (~8 seconds), no further updates happen from the timer 1 code *until* after the callback initiated by the timer 2 code returns.

Essentially something is blocking somewhere. At first I thought it was a timer but then I repro'd the issue by invoking the grid population by a button click. I looked at the WCF service again and its ServiceBehaviors all appear to be set correctly to support proper async operations. About the only thing I haven't done is physically implement my own async methods in the WCF service to see if that resolves it.

Am I missing anything obvious here? Can two different async calls into the same WCF service not occur asynchronously?

Thanks for any and all help.

Jim

Marin
Telerik team
 answered on 27 Dec 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?