Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
65 views
We are using RADTooltip to show a modal message in our pages. Following is the tooltip definition

<telerik:RadToolTip ID="infoFlash" runat="server" EnableEmbeddedSkins="false" Modal="true"
    ShowCallout="false" Position="Center" ManualClose="true" RelativeTo="BrowserWindow" OnClientShow="SetHideTimeOut"
    OnClientHide="ResetHideTime">
    <div id="divBody" class="divInfoFlashBody">
        <div id="divInfoImage" class="leftAlignElement divInfoSuccessImage" style="background-image:url(<%= GetImagePath(ImageType.Success) %>)">
        </div>
        <div id="textBox" class='rightAlignElement divInfoText resultMessage FontColor3'
            runat="server">
        </div>
    </div>
</telerik:RadToolTip>

We are opening the tooltip using Show() method on serverside. We also use clientside Show() method. This is working fine in regular environments. But when we deploy this in a HTTPS environment, it shows security warning message when the tooltip is about to show. We have observed this in IE6, 7, 8.

We are using Telerik webcontrols version 2008.2.1001.35.

Any thoughts on this?
Lakshmi Satish Maddela
Top achievements
Rank 1
 answered on 23 Jun 2010
2 answers
168 views
I have a pretty simple situation where I have the following arrangement:-
<telerik:RadSplitter ID="Radsplitter1" runat="server"......
    <telerik:RadPane ID="Radpane1" runat="server" .....
        <telerik:RadSlidingZone ID="Radslidingzone1" runat="server" ....
            <telerik:RadSlidingPane ID="rsp1" ...... 
            <telerik:RadSlidingPane ID="rsp2" ...... 
            <telerik:RadSlidingPane ID="rsp3" ...... 

All I want to do is to be able to programmatically, on the server side, make the contents on the "rsp2" to be selected and visible to the user. Is it possible or can it only be activated/selected by the user?
 
Ben Thompson
Top achievements
Rank 1
 answered on 23 Jun 2010
6 answers
267 views
I use Rad AjaxManager and open all of my popups through window.radopen. A particular page (contentpage.aspx) is opened in a rad window. I would, like, if the user clicks on the "X" to execute some codebehind on the contentpage.aspx. I see one can wire up the OnCLientClose event of rad window, but it seems the javascript funciton has to exist in the page the window was opened from, and not in the page that is loaded in the window. ALso, the timing of wiring up this event doesn't seem to work for me, since it seems the event has to be wired up prior to the eindow being opened. so, in general, is it possible to run some server-side code behind method in a content page in response to a user clicking on the "X" in a rad window opened through Window Manager?
Albert Shenker
Top achievements
Rank 1
Veteran
Iron
 answered on 23 Jun 2010
10 answers
339 views
Hi,

I have the following RadToolBar within a user control :
   <telerik:radtoolbar id="rtbToolBar" runat="server" skin="Office2007" borderstyle="None" 
      width="100%" onbuttonclick="rtbToolBar_ButtonClick" onclientbuttonclicking="toolbarClicking">  
                              </telerik:radtoolbar> 

Buttons are then added programatically.

The problems is, the serverside button click event only fires the first time that a button is clicked.  After that, nothing happens.
The clientside onclientbuttonclicking event still fires.
As a test I have placed an asp button in the control with the radtool bar.  The buttons click event fires succefully each time.

I would very much appreciate some help with this issue, it's driving me crazy!

Thanks,

Sean Duffy
Cristian Malinescu
Top achievements
Rank 1
 answered on 23 Jun 2010
3 answers
196 views
I need to be able to set the CurrentFilterFunction to NoFilter when the user deletes the value without manually selecting the NoFilter option from the menu.  The following code is useless since the CurrentFilterValue contains the value that was deleted.

            foreach (GridColumn column in RadGrid1.MasterTableView.Columns)
            {
                if (column.CurrentFilterFunction != GridKnownFunction.NoFilter
                && string.IsNullOrEmpty(column.CurrentFilterValue))
                {
                    column.CurrentFilterFunction = GridKnownFunction.NoFilter;
                }
            }

Here is the description from the tester: If you enter a value in a filter field and highlight thevalue and hit the delete key then enter a value in a different filter and selectthe filter icon… the first value you entered and deleted re-appears and isincluded in the filter.
Martin
Telerik team
 answered on 23 Jun 2010
3 answers
96 views
Hi,

It seems that the RadCalendar.IsSelected property is ignored. The below code should randomly select 1 of every 5 days. Instead none are selected. Any help is appreciated.

Jeff

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> 
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
 
<html xmlns="http://www.w3.org/1999/xhtml"
<head runat="server"
    <title></title
</head> 
<body> 
    <form id="form1" runat="server"
        <asp:ScriptManager runat="server" /> 
        <rad:RadCalendar runat="server" OnDayRender="OnDayRender" EnableMultiSelect="true" /> 
    </form> 
</body> 
</html> 
 

using System; 
using System.Collections.Generic; 
using System.Linq; 
using System.Web; 
using System.Web.UI; 
using System.Web.UI.WebControls; 
 
public partial class _Default : System.Web.UI.Page 
    private Random Rand = new Random(); 
 
    protected void OnDayRender(object sender, Telerik.Web.UI.Calendar.DayRenderEventArgs e) 
    { 
        if (Rand.Next(5) == 0) 
            e.Day.IsSelected = true
    } 
Martin
Telerik team
 answered on 23 Jun 2010
2 answers
282 views
Hi!
I'm trying to disable sorting / paging / filtering on my grid according some condition on the page.

The  code is the following

            grid.AllowPaging = false;
            grid.AllowSorting = false;
            grid.AllowFilteringByColumn = false;

This code doesn't work as expected. If I disable everything, the rendered grid has everything enabled and it's disabled ON NEXT postback. So It works, but with delay. The same if I try to enable everything again.

I placed that code on different events on the page / grid life cycle with no luck. Same behavior. I want to disable those commands and immediately see them disabled, not on next postback.

Thanks!
Jp Maxwell
Top achievements
Rank 1
 answered on 23 Jun 2010
2 answers
147 views
Hello!

When I have a radgrid nested inside of an RadAjaxPanel or associated with a RadAjaxManager, automatic paging will not work.  If the ajax panel or ajax manager is removed, the grid will postback to the next page.  Within the panel or associated with the manager, it never postbacks to the next page and appears to hang.  Any suggestions?

Thank you for any feedback that is provided!
Sanai
Top achievements
Rank 1
 answered on 23 Jun 2010
7 answers
105 views
Hi

Switching to day view throws the following error.

j is null
_onAppointmentMouseOver()Teleri...d16cbdc (line 8611)
_onDomEvent()Teleri...d16cbdc (line 7120)
createCallback()Teleri...d16cbdc (line 6)
createCallback()Teleri...d16cbdc (line 6)
Also, I have noticed appointment object becomes null when switching to day view.

Any ideas what could be the cause of this?

Thanks
T. Tsonev
Telerik team
 answered on 23 Jun 2010
4 answers
119 views
Ok, I feel like an idiot, but how do I change the skin of the RadEditor from Default to something else?

Thanks
Joseph Roberts
Top achievements
Rank 1
 answered on 23 Jun 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?