Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
185 views
Currently we run a UK server but we have some Australian users, with the time differences being so great the AU users have some issues with the datepickers.  We have solved most of the issues apart from setting what today's current date is on the Telerik Datepickers.  We cannot find a way of changing what the current date is for the datepicker, when it uses the server time this can sometimes highlight the wrong date on the popup.
Steven
Top achievements
Rank 1
 answered on 17 Oct 2011
1 answer
154 views
I'm running a web-site that when in IE uses IE9 standards mode. This web site uses a RadSplitter to display external content in a RadPane.

When showing a page in the RadPane that requires IE7 compatibility mode IE still seems to render in IE 9 standards mode causing rendering defects.

Opening a new tab and pasting in the exact same URL the page is rendered flawless in IE7 compatibility mode as long as it runs outside of the RadPane.

Is this a shortcoming of IE 9 (cannot display mixed standardsmode and compatibility mode in iframes on the same page) or is there something with RadPane I need to do?
Dobromir
Telerik team
 answered on 17 Oct 2011
1 answer
83 views
Hi there,
        I am using a rad grid which containd a detail table inside. I have applied column width to few of the columns in the main grid. But once I expand the main grid row, the column width is not maintaining as desired in the main grid. Could you explain the exact reason behind this and what is the solution ?

Regards,
Shafi
Shinu
Top achievements
Rank 2
 answered on 17 Oct 2011
3 answers
178 views
I'm using Captcha Control in a my Login Page.

All the pages of website are protected from login, so in web.config I have set the <location> tag with attribute path="" to protect all pages like below:

 <location path="">
  <system.web>
   <authorization>
    <allow roles="aaa"/>
    <deny users="*"/>
   </authorization>
  </system.web>
 </location>

If I'm not logged, the Captcha doesn't show image. If I put it in a second page, after login I see correctly the image.

Is there anything to configure to show it in my case?

Thanks,

Matteo
 


Paul
Top achievements
Rank 1
 answered on 17 Oct 2011
1 answer
70 views
Hi,

We are using the Q1 2008 version of RadEditor, and we have a problem that happens which I cannot reproduce at will.

The Editor is set to to strip ALL formatting on paste. The content can then be formatted to look as desired. When the content is saved, it will occasionally convert characters such as < to %3c, = to %3d, " to %22, etc.

Like I stated, it happens randomly, so I can't reproduce at will, but it there a way to prevent it from happening, because it becomes too many characters to attempt to do a replace on.

Thanks!
Rumen
Telerik team
 answered on 17 Oct 2011
2 answers
86 views
Hi

Can someone just confirm something for me?
I need to monitor a process that is running in a class library, I need to call a method in my class library that will process x number of files I would have liked to have incremented the progress bar after each item was processed so the user could monitor the overall progress, I seem to remember doing this using the windows controls by raising an event from the class library method and incrementing the bar each time the event was fired.
I don't think the above is possible with the web version of the control. Am I correct?

Thanks
Martin.
Peter Filipov
Telerik team
 answered on 17 Oct 2011
1 answer
52 views
Hello,

I am trying to select few nodes of a rad tree view through code at run time(during page load). Once all the child nodes are selected I am selecting their parent node as well. When the page is loaded I am seeing an expanded parent node but selection(checked) of them is missing. But when I read the collection of checked nodes these nodes which I checked through are being returned.

Can you please help in resolving this issue. Any sort of help is greatly appreciated.

Thanks

Srinivas
Plamen
Telerik team
 answered on 17 Oct 2011
1 answer
89 views
I am having problems closing any of the Advanced templates after clicking on Insert (command name Insert) or Update (command name Edit) buttons. The code behind runs successfully and the database is updated but form remains on the screen. The only solution so far is to use redirect but in that case scheduler goes back to todays date and generally it is not very good solution. I've alos tried binding the scheduler upon execution of the code (instead of using redirect) and still the advanced template remains visible. What could be done to fix this issue. Thanks
Ivana
Telerik team
 answered on 17 Oct 2011
4 answers
69 views
Hi
I'm using radgrid inside the radpanelbar.
I'm using the Radtooltipmanager.
All tooltips are showing currectly.
the tooltips of Slider like Decrease,Drag and Increase are appears as normal tooltips.
But rest of the other things are appearing in telerik style tooltip.
How cloud I fix this please help me as early as possible.
Ram
Top achievements
Rank 1
 answered on 17 Oct 2011
3 answers
200 views
Hi Telerik,

I am just doing some fine-tuning of my controls, and I noticed that there are slight differences in how some of my pop-up RadWindows are rendered under different browsers. I've accounted for all that I can, but I would like to open a RadWindow with a different height, as cleanly as possible, but be able to account for these browser differences.

Currently, I have the following implementation:

<telerik:RadWindowManager ID="RadWindowManager1" Runat="Server" Skin="Web20" Modal="True" KeepInScreenBounds="True" EnableShadow="True" Behaviors="Close, Move" VisibleStatusbar="False" ReloadOnShow="True" ShowContentDuringLoad="False" Behavior="Close, Move" Title="Confirm Action" IconUrl="~/Content/Dashboard/Icons/radwindow_confirmdelete.png" OnClientDragStart="OnWindowDrag" Style="z-index: 90001 !important">
    <Windows>
        <telerik:RadWindow ID="DashboardGlobalSettingsWindow" Runat="Server" NavigateUrl="~/Dashboard/Dialog/Windows/DashboardGlobalSettings.aspx" OnClientShow="OnDashboardGlobalSettingsShow" OnClientClose="OnDashboardGlobalSettingsClose" IconUrl="~/Content/Dashboard/Icons/radwindow_settings.png" OnClientAutoSizeEnd="OnClientAutoSizeEnd" Title="Global Settings" MinHeight="337px" Height="337px" Width="450px" />
    </Windows>
</telerik:RadWindowManager>

//Shows the global settings window -- dock isn't relevant here.
//I cancel the event because I'm making it look like a button on the side when it is really
//a sliding zone that would expand. When I cancel the slide event, though, it's a button!
function ShowDashboardGlobalSettings(sender, eventArgs) {
    eventArgs.set_cancel(true);
    oWindow = radopen(null, "DashboardGlobalSettingsWindow");
}
 
//Pass current tabs to the dialog window.
function OnDashboardGlobalSettingsShow(sender) {
    sender.argument = $find(radTabStrip1ID).get_tabs();
}
 
//Pass tabs back to dashboard.
function OnDashboardGlobalSettingsClose(sender) {
    var globalJSONAttributes = sender.argument;
    if (globalJSONAttributes != null) {
        __doPostBack(radTabStrip1UniqueID, $.toJSON(globalJSONAttributes));
    }
    oWindow = null;
}

Should I parse the browser information where I obtain a handle on the oWindow, and then set the height as necessary? 

Thanks

EDIT: Just for the sake of keeping similar questions in one thread, could you guys also take a look at this?

<telerik:RadWindow ID="CustomLocalSettingsWindow" Runat="Server" NavigateUrl="~/Dashboard/Dialog/Windows/CustomLocalSettings.aspx" OnClientShow="OnLocalSettingsShow" OnClientClose="OnCustomLocalSettingsClose" IconUrl="~/Content/Dashboard/Icons/radwindow_settings.png" OnClientAutoSizeEnd="OnClientAutoSizeEnd" Title="Settings" Width="450px" Height="200px"/>


function ShowLocalSettings(dock) {
    radDock = dock; //Maintain a hold on the dock that is pulling up the window. Useful to save info when window closes.
 
    var reportType = radDock.get_element().getAttribute("ReportType");
    if (reportType == "HistoricalReport") {
        oWindow = window.radopen(null, "HistoricalLocalSettingsWindow");
    }
    else if (reportType == "CustomReport") {
        oWindow = window.radopen(null, "CustomLocalSettingsWindow");
 
        if ($.browser.opera) {
            alert("test");
            oWindow.set_height(oWindow.get_height() - 45);
        }
 
    }
    else {
        window.radalert("Didn't find report type.");
    }
}

http://screencast.com/t/905DDs2rgM

There's a short video clip of what I am seeing. Basically, setting the oWindow's height like so (to fix height issues in Opera), is causing the next click to make the window even smaller. Yet, I only see the alert fire once (not in the video, but tested). Even calling set_height using a hard-coded value not dependent on get_height causes the same effect. Not calling set_height at all does not cause the effect, though. This seems like a bug in set_height. Any idea why this would be happening?

It doesn't happen when I have AutoSize="True" and AutoSizeBehvaiors="Height", however I think that's just hiding the bug.
Marin Bratanov
Telerik team
 answered on 17 Oct 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?