Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
98 views
Hi all,

just to report a mistake in the help page:
http://www.telerik.com/help/aspnet-ajax/client-side-binding.html -

in the middle of the page, you say:

To optimize even more the grid client-side data binding you can get both data and total items count in a single request. Example:
... 
[WebMethod(EnableSession = true)] 
public Dictionary<string, object> GetDataAndCount(int startRowIndex, int maximumRows, List<GridSortExpression> sortExpression, List<GridFilterExpression> filterExpression) 
   Dictionary<string, object> data = new Dictionary<string, object>(); 
   data.Add("data", GetData(startRowIndex, maximumRows, sortExpression, filterExpression)); 
   data.Add("count", (int)Session["Count"]); 
   return data; 
... 

But actually the key "data" and "count" should be "Data" and "Count", otherwise they won't be recognized. The JSON output you may trace here (http://demos.telerik.com/TelerikCompressionModule/) proof this.

Thanks,
Enrico Foschi


Sebastian
Telerik team
 answered on 20 Dec 2008
2 answers
115 views
Hi

I have a grid in my page in the grid the user click on employee name it will open the rad window with corresponding employee detail.The problem is first i click one employee and open the detail then i click the second emploee  upto load the second employee detail the old employee detail is displaying in window.I want to clear the screen when i load the next employee or i want to display Loading Image.

Thanks
Vairam
vairam
Top achievements
Rank 1
 answered on 20 Dec 2008
3 answers
150 views
hi telerik

when i add radgrid in my code my radalert in (button1_click) doesnt work,
  <telerik:RadGrid ID="RadGrid1" runat="server"></telerik:RadGrid>

but when i remove radgrid from my code 
, it works fine( shows that alert) . i think that radgrid prevent to open radwindow.

this is my code :

<

 

body><form id="form1" runat="server"><div>

 

 

 


<
telerik:RadWindowManager ID="RadWindowManager1" runat="server" DestroyOnClose="True" Modal="True" KeepInScreenBounds="True"></telerik:RadWindowManager>
<telerik:RadScriptManager ID="RadScriptManager1" runat="server"></telerik:RadScriptManager>

 

 

<asp:UpdatePanel ID="UpdatePanel1" runat="server"> 
<ContentTemplate>

    <
asp:Button ID="Button3" runat="server" onclick="Button1_Click" style="height: 26px" Text="alert" Width="56px" />

 

 

 

    <telerik:RadGrid ID="RadGrid1" runat="server"></telerik:RadGrid>

 

 

   </ContentTemplate>

 

 

 

</asp:UpdatePanel>

 

 

 

</div></form></body>
-------------------------------------------------------------------
and this is code behinde :
 

 

 

 

protected void Button1_Click(object sender, EventArgs e)

{

 

    ScriptManager.RegisterStartupScript(Page, Page.GetType(), Guid.NewGuid().ToString(), "radalert('123', 200, 100,'MyAlert');", true);

 

}
---------------------------------------------------------------------
help!

 

 

 

 

Georgi Tunev
Telerik team
 answered on 20 Dec 2008
1 answer
185 views
Hi Everyone,

I have a Splitter, that has a three sections.  The top panel is a sliding panel (top), a middle panel contains a grid, and the bottom panel will contain various controls.  My problem is that when the grid is populated with data, through a button click on the sliding panel, the grid is only occupying about half of the middle panel.  The thing is, when I dock the sliding panel, then undock it, the grid will resize and then occupy the entire middle section.  Below is my code.  Any help is greatly appreciated!

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Trips.aspx.cs" Inherits="Web.Trips" %> 
 
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> 
<!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 id="Head1" runat="server"
    <title>Untitled Page</title> 
    <style type="text/css"
        .RadPicker_WebBlue 
        { 
            vertical-align: middle; 
        } 
        .RadPicker_WebBlue .rcInputCell 
        { 
            padding: 0 4px 0 0; 
        } 
        .RadInput_Default 
        { 
            font: 12px arial,sans-serif; 
        } 
        .RadInput_Default 
        { 
            vertical-align: middle; 
        } 
        .RadPicker_WebBlue .rcCalPopup 
        { 
            background-position: 0 -200px; 
        } 
        .RadPicker_WebBlue td a 
        { 
            display: block; 
            overflow: hidden; 
            position: relative; /*FF*/ 
            outline: none; /*FF*/ 
            z-index: 2; /*Opera*/ 
            width: 16px; 
            height: 16px; 
            margin: 0 2px; 
            background: url(               'mvwres://Telerik.Web.UI, Version=2008.3.1125.35, Culture=neutralPublicKeyToken=121fae78165ba3d4/Telerik.Web.UI.Skins.WebBlue.Calendar.sprite.gif' ) no-repeat; 
            text-indent: -1111px; 
            text-align: center; 
            text-decoration: none; 
        } 
        .filterControls 
        { 
            font-family: Calibri; 
            font-size: medium; 
            padding: 5px; 
        } 
        .tripDetailsTop 
        { 
            font-family: Calibri; 
            margin-left: auto; 
            margin-right: auto; 
            width: 108%; 
        } 
        .tripDetailsNested 
        { 
            font-family: Calibri; 
            border: 1px solid #333; 
        } 
        html, body, form 
        { 
            height: 100%; 
            padding: 0px; 
            margin: 0px; 
            overflow: hidden; 
        } 
        .filterColumns 
        { 
            width: 1%; 
            white-space: nowrap; 
        } 
    </style> 
 
<script type="text/javascript"
   function centerUpdatePanel() 
   { 
    centerElementOnScreen(document.getElementById("uxRadAjaxLoadingPanel")); 
   } 
   function centerElementOnScreen(element) 
   { 
    var scrollTop = document.body.scrollTop; 
    var scrollLeft = document.body.scrollLeft; 
    var viewPortHeight = document.body.clientHeight; 
    var viewPortWidth = document.body.clientWidth; 
    if (document.compatMode == "CSS1Compat") 
    { 
     viewPortHeight = document.documentElement.clientHeight; 
     viewPortWidth = document.documentElement.clientWidth; 
     scrollTop = document.documentElement.scrollTop; 
     scrollLeft = document.documentElement.scrollLeft; 
    } 
    var topOffset = Math.ceil(viewPortHeight/2 - element.offsetHeight/2); 
    var leftOffset = Math.ceil(viewPortWidth/2 - element.offsetWidth/2); 
    var top = scrollTop + topOffset - 40; 
    var left = scrollLeft + leftOffset - 70; 
       element.style.position = "absolute"
    element.style.top = top + "px"; 
    element.style.left = left + "px"; 
</script> 
</head> 
<body> 
    <form id="form1" runat="server"
    <telerik:RadScriptManager ID="uxRadScriptManager" runat="server" /> 
    <telerik:RadAjaxLoadingPanel IsSticky="true" ID="uxRadAjaxLoadingPanel" runat="server" Height="75px" 
        Width="75px"
        <img alt="Loading..." src='<%= RadAjaxLoadingPanel.GetWebResourceUrl(Page, "Telerik.Web.UI.Skins.Default.Ajax.loading1.gif") %>' 
            style="border: 0px;" /> 
    </telerik:RadAjaxLoadingPanel> 
    <telerik:RadFormDecorator ID="uxRadFormDecorator" runat="server" Skin="Web20" /> 
    <telerik:RadWindowManager ID="uxRadWindowManager" runat="server" Skin="Web20"
    </telerik:RadWindowManager> 
    <telerik:RadSplitter ID="uxRadSplitter" runat="server" LiveResize="True" Skin="Inox" 
        Height="100%" Width="100%" SplitBarsSize="10px" BorderSize="0" BorderStyle="None" 
        Orientation="Horizontal" FullScreenMode="True" PanesBorderSize="0" VisibleDuringInit="False"
        <telerik:RadPane ID="uxRadPaneFilter" runat="server" Height="0px" Width="243px" MaxWidth="400" 
            MinWidth="200" MaxHeight="0" Scrolling="None" MinHeight="0"
            <telerik:RadSlidingZone ID="uxRadSlidingZone" runat="server" ClickToOpen="True"
                <telerik:RadSlidingPane ID="uxRadSlidingPanel" runat="server" 
                    IconUrl="UIComponents/Images/filter.gif" Title="Filter" CssClass="filterControls" 
                    Height="350px" Scrolling="None" BackColor="White"
                    <div class="filterControls"
                        <table cellpadding="0" cellspacing="5" width="100%"
                            <tr> 
                                <td class="filterColumns"
                                    Trips Dates: 
                                </td> 
                                <td class="filterColumns"
                                    <telerik:RadDatePicker ID="uxRadDatePickerFrom" runat="server" Skin="WebBlue"
                                        <Calendar runat="server" Skin="WebBlue" UseColumnHeadersAsSelectors="False" UseRowHeadersAsSelectors="False" 
                                            ViewSelectorText="x"
                                        </Calendar> 
                                        <DatePopupButton HoverImageUrl="" ImageUrl="" /> 
                                    </telerik:RadDatePicker> 
                                    &#160; To&#160; 
                                    <telerik:RadDatePicker ID="uxRadDatePickerTo" runat="server" Skin="WebBlue"
                                        <Calendar runat="server" Skin="WebBlue" UseColumnHeadersAsSelectors="False" UseRowHeadersAsSelectors="False" 
                                            ViewSelectorText="x"
                                        </Calendar> 
                                        <DatePopupButton HoverImageUrl="" ImageUrl="" /> 
                                    </telerik:RadDatePicker> 
                                </td> 
                                <td> 
                                    &#160; 
                                </td> 
                            </tr> 
                            <tr> 
                                <td class="filterColumns"
                                    Division: 
                                </td> 
                                <td> 
                                    <telerik:RadComboBox ID="uxRadComboBoxDivision" runat="server" Skin="WebBlue" Width="330px"
                                        <CollapseAnimation Duration="200" Type="OutQuint" /> 
                                    </telerik:RadComboBox> 
                                </td> 
                                <td> 
                                    <asp:Button ID="uxButtonClearDivision" runat="server" Text="Clear" /> 
                                </td> 
                            </tr> 
                            <tr> 
                                <td class="filterColumns"
                                    Route: 
                                </td> 
                                <td> 
                                    <telerik:RadComboBox ID="uxRadComboBoxRoute" runat="server" Skin="WebBlue" Width="330px"
                                        <CollapseAnimation Duration="200" Type="OutQuint" /> 
                                    </telerik:RadComboBox> 
                                </td> 
                                <td> 
                                    <asp:Button ID="uxButtonClearRoute" runat="server" Text="Clear" /> 
                                </td> 
                            </tr> 
                            <tr> 
                                <td class="filterColumns"
                                    Direction: 
                                </td> 
                                <td> 
                                    <telerik:RadComboBox ID="uxRadComboBoxDirection" runat="server" Skin="WebBlue" Width="330px"
                                        <CollapseAnimation Duration="200" Type="OutQuint" /> 
                                    </telerik:RadComboBox> 
                                </td> 
                                <td> 
                                    <asp:Button ID="uxButtonClearDirection" runat="server" Text="Clear" /> 
                                </td> 
                            </tr> 
                            <tr> 
                                <td class="filterColumns"
                                    Trip Status: 
                                </td> 
                                <td> 
                                    <telerik:RadComboBox ID="uxRadComboBoxTripStatus" runat="server" Skin="WebBlue" Width="330px"
                                        <CollapseAnimation Duration="200" Type="OutQuint" /> 
                                    </telerik:RadComboBox> 
                                </td> 
                                <td> 
                                    <asp:Button ID="uxButtonClearTripStatus" runat="server" Text="Clear" /> 
                                </td> 
                            </tr> 
                            <tr> 
                                <td class="filterColumns"
                                    Origin: 
                                </td> 
                                <td> 
                                    <telerik:RadComboBox ID="uxRadComboBoxOrigin" runat="server" Skin="WebBlue" Width="330px"
                                        <CollapseAnimation Duration="200" Type="OutQuint" /> 
                                    </telerik:RadComboBox> 
                                </td> 
                                <td> 
                                    <asp:Button ID="uxButtonClearOrigin" runat="server" Text="Clear" /> 
                                </td> 
                            </tr> 
                            <tr> 
                                <td class="filterColumns"
                                    Destination: 
                                </td> 
                                <td> 
                                    <telerik:RadComboBox ID="uxRadComboBoxDestination" runat="server" Skin="WebBlue" 
                                        Width="330px"
                                        <CollapseAnimation Duration="200" Type="OutQuint" /> 
                                    </telerik:RadComboBox> 
                                </td> 
                                <td> 
                                    <asp:Button ID="uxButtonClearDestination" runat="server" Text="Clear" /> 
                                </td> 
                            </tr> 
                            <tr> 
                                <td class="filterColumns"
                                    Train #: 
                                </td> 
                                <td> 
                                    <telerik:RadComboBox ID="uxRadComboBoxTrainNumber" runat="server" Skin="WebBlue" 
                                        Width="330px"
                                        <CollapseAnimation Duration="200" Type="OutQuint" /> 
                                    </telerik:RadComboBox> 
                                </td> 
                                <td> 
                                    <asp:Button ID="uxButtonClearTrainNumber" runat="server" Text="Clear" /> 
                                </td> 
                            </tr> 
                            <tr> 
                                <td class="filterColumns"
                                    &#160; 
                                </td> 
                                <td> 
                                    <asp:RadioButtonList ID="uxOptRevenueType" runat="server" RepeatDirection="Horizontal"
                                        <asp:ListItem Selected="True">Revenue</asp:ListItem> 
                                        <asp:ListItem>Non-Revenue</asp:ListItem> 
                                        <asp:ListItem>Both</asp:ListItem> 
                                    </asp:RadioButtonList> 
                                </td> 
                                <td> 
                                    &#160; 
                                </td> 
                            </tr> 
                            <tr> 
                                <td class="filterColumns"
                                    &nbsp;</td> 
                                <td> 
                                    &nbsp;</td> 
                                <td> 
                                    &nbsp;</td> 
                            </tr> 
                            <tr> 
                                <td class="filterColumns"
                                    &nbsp;</td> 
                                <td> 
                                    <asp:Button ID="uxButtonOK" runat="server" Text="OK"  
                                        onclick="uxButtonOK_Click" /> 
                                    &nbsp;&nbsp; 
                                    <asp:Button ID="uxButtonNew" runat="server" Text="New" /> 
                                    &nbsp;&nbsp; 
                                    <asp:Button ID="uxButtonClearFilter" runat="server" Text="Clear" /> 
                                </td> 
                                <td> 
                                    &nbsp;</td> 
                            </tr> 
                        </table> 
                    </div> 
                </telerik:RadSlidingPane> 
            </telerik:RadSlidingZone></telerik:RadPane> 
        <telerik:RadPane ID="uxRadPaneList" runat="server" Height="" Scrolling="Y"
            <telerik:RadGrid ID="uxRadGridList" runat="server" GridLines="None" 
                Skin="WebBlue" AllowSorting="True"  
                oncolumncreated="uxRadGridList_ColumnCreated"  
                onneeddatasource="uxRadGridList_NeedDataSource" Height="100%" Width="100%"
                <HeaderContextMenu EnableTheming="True"
                    <CollapseAnimation Duration="200" Type="OutQuint" /> 
                </HeaderContextMenu> 
                <MasterTableView> 
                    <RowIndicatorColumn> 
                        <HeaderStyle Width="20px" /> 
                    </RowIndicatorColumn> 
                    <ExpandCollapseColumn> 
                        <HeaderStyle Width="20px" /> 
                    </ExpandCollapseColumn> 
                </MasterTableView> 
                <ClientSettings> 
                    <Selecting AllowRowSelect="True" /> 
                </ClientSettings> 
                <FilterMenu EnableTheming="True"
                    <CollapseAnimation Duration="200" Type="OutQuint" /> 
                </FilterMenu> 
            </telerik:RadGrid></telerik:RadPane> 
        <telerik:RadSplitBar ID="uxRadSplitBarListDetail" runat="server" CollapseExpandPaneText="" /> 
        <telerik:RadPane ID="uxRadPaneDetail" runat="server" Height=""
        </telerik:RadPane> 
    </telerik:RadSplitter> 
    <telerik:RadAjaxManager runat="server" ClientEvents-OnRequestStart="centerUpdatePanel();"
        <AjaxSettings> 
            <telerik:AjaxSetting AjaxControlID="uxButtonOK"
                <UpdatedControls> 
                    <telerik:AjaxUpdatedControl ControlID="uxRadGridList" LoadingPanelID="uxRadAjaxLoadingPanel" /> 
                </UpdatedControls> 
            </telerik:AjaxSetting> 
            <telerik:AjaxSetting AjaxControlID="uxRadGridList"
                <UpdatedControls> 
                    <telerik:AjaxUpdatedControl ControlID="uxRadGridList"  
                        LoadingPanelID="uxRadAjaxLoadingPanel" /> 
                </UpdatedControls> 
            </telerik:AjaxSetting> 
        </AjaxSettings> 
    </telerik:RadAjaxManager> 
    </form> 
</body> 
</html> 
 

Dimo
Telerik team
 answered on 20 Dec 2008
1 answer
164 views
When using RadDatePicker with a shared RadCalendar I cannot select a date,  then change my mind and select a different date.
In recreating the error in a separate project, to send with this problem, I found that this works fine until I add the RadAjaxManager
and cause the code to execute javascript code before saving the data to the screen.  Steps to recreate:
    Enter a date and confirm.
    Then click on the calendar again to attempt to change the date.
    First message occurs:
----------
Line: 2235   (line # differs depending on executing page - usually is 2221 - in sample it is 2235) *maybe in RadCalendar.js ??
Char: 13
Error: 'this.CurrentViews.length' is null or not an object
Code: 0
URL: ...TestRadDatePicker.aspx
----------
If I continue to select a different year and month, nothing changes and the 2nd message also occurs.
----------
Line: 2415  (line # differs depending on executing page - usually is 2443) - in sample it is 2415)
Char: 1
Error: 'this.CurrentViews.0' is null or not an object
Code: 0
URL: http://localhost:1033/TestRadDatePicker.aspx
--------------
The char position and messages are always the same.  I am hoping you can provide me with some assistance in this matter.
Here is the .aspx code:
-----

<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="TestRadDatePicker.aspx.vb" Inherits="RadControlsTest._RadDatePickerTest" %>

<%@ Register Assembly="RadAjax.Net2" Namespace="Telerik.WebControls" TagPrefix="radA" %>

<%@ Register Assembly="RadCalendar.Net2" Namespace="Telerik.WebControls" TagPrefix="radCln" %>

<!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>TestRadDatePicker</title>
    <SCRIPT language="javascript" type="text/javascript" src="TestRadDatePicker.js"></SCRIPT>
</head>
<body onload="RunOnLoad();">
    <form id="form1" runat="server">
    <div>
        <tr><td>
        <table id="tblGetDate" runat="server" width="100%" border="0" align="left">
            <tr width="100%" align="left">
                <td width="10%">&nbsp;</td>
                <td height="10px" valign="middle" align="left" width="21%">
                    <asp:Label ID="lblDOB" runat="server" width="100%" style="Text-align: left; font-size: 9pt;" Text="Date Of Birth:" Font-Bold="True"></asp:Label>
                </td>
               <td height="10px" align="left" valign="top" style="width: 15%">
                    <radCln:RadDatePicker ID="RadDatePicker1" runat="server"
                            SharedCalendarID="RadCalendar1"
                         Width="90%"
                         ToolTip="If typing a date, use mmddyy or M/d/yy format ... or select a date from calendar. Date of birth must be less than today."
                            MinDate=""
                            FocusedDate="">
                          <DateInput
                                Skin=""
                                Font-Size="8pt"
                                AutoPostBack="True"
                                CausesValidation="True"
                                DateFormat="MM/dd/yyyy">    
                             <EmptyMessageStyle
                                    BackColor="#E0E0E0"  
                                    Font-Italic="True" />
                           <InvalidStyle
                                    BorderColor="#E0E0E0"
                                    ForeColor="Red"
                                    Font-Bold="True" />
                          </DateInput>
                    </radCln:RadDatePicker>
                </td>
                <td width="63%" valign="middle" style="line-height: 10px;">
                    <asp:Label ID="valDOB" runat="server" style="line-height: 15px;" Font-Bold="True" Font-Size="8pt" ForeColor="Red" Width="90%"></asp:Label>
                </td>
            </tr>
        </table>
        </td></tr>
        <tr height="3px">
        <td style="height: 3px; width: 802px;">
            <!-- Calendar goes here -->

            <radCln:RadCalendar ID="RadCalendar1" runat="server"
                    Font-Names="Arial, Verdana, Tahoma"
                    ForeColor="Black"
                    Style="border-left-color: #ececec; border-bottom-color: #ececec;
                           border-top-color: #ececec; border-right-color: #ececec"
                    EnableMultiSelect="False"
                    ShowRowHeaders="False"
                    UseColumnHeadersAsSelectors="False"
                    DayNameFormat="Shortest"
                    Width="159px"
                    RangeMaxDate="12/31/2099"
                    RangeMinDate="" >
                    <FastNavigationSettings EnableTodayButtonSelection="True" />
                    <SpecialDays>
                        <radCln:RadCalendarDay Repeatable="Today" Date="" >
                            <ItemStyle CssClass="radCalToday_Default" />
                        </radCln:RadCalendarDay>
                    </SpecialDays>
                    <DayOverStyle BackColor="InactiveCaptionText" />
                    <TitleStyle BackColor="InactiveCaptionText" />
                    <SelectedDayStyle Font-Bold="True"/>
            </radCln:RadCalendar>
        </td>
        </tr>
        <radA:RadAjaxManager ID="RadAjaxManager1" runat="server" EnableOutsideScripts="True">
            <AjaxSettings> 
                <radA:AjaxSetting AjaxControlID="RadDatePicker1">
                    <UpdatedControls>
                        <radA:AjaxUpdatedControl ControlID="RadDatePicker1" />
                    </UpdatedControls>
                </radA:AjaxSetting>
            </AjaxSettings>
            <ClientEvents OnRequestStart="ProcessByEvent" />
        </radA:RadAjaxManager>
    </div>
    </form>
</body>
</html>


Please let me know if you need to see more source (.aspx.vb and/or  .js )... or
if you need the whole project/solution.  I can provide whatever is needed to figure this out.
Thanks.  Nancy
Pavel
Telerik team
 answered on 20 Dec 2008
1 answer
227 views

I am getting the below message when I use the filter in the RadGrid. 

Unable to cast object of type 'Telerik.Web.UI.RadGrid' to type 'Telerik.Web.UI.GridTableView'.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.InvalidCastException: Unable to cast object of type 'Telerik.Web.UI.RadGrid' to type 'Telerik.Web.UI.GridTableView'.

Source Error:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace:

[InvalidCastException: Unable to cast object of type 'Telerik.Web.UI.RadGrid' to type 'Telerik.Web.UI.GridTableView'.]
   Telerik.Web.UI.RadGrid.RaisePostBackEvent(String eventArgument) +1736
   System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +13
   System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +175
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1565
Rosen
Telerik team
 answered on 20 Dec 2008
3 answers
136 views
Hi There:

I have 2 questions and would appreciate enlightment on them:

1. How do I automatically close the RadWindow right after it is loaded? Let me explain:

The radWinow has a url of "ChildPage.aspx"  When radWindow opens, the ChildPage.aspx's onLoad event runs and tests certain conditions (e.g.: are the querystring valid?) .  If the test fails, then I want to:
 
a. display an alert triggered by ChildPage.aspx's server-side onLoad event. e.g.: "This RadWindow will now closes because querystring is incorrectly passed.", and when user clicks ok,

b. the RadWindow closes itself.


2. Can I add value to the RadWindow's argument property server side?  For example, everytime I click an update button in the RadWindow, the page does a database update on the server-side.  If the update was successful,  I want the argument value to increase by 1.  So, when the Radwindow is finally closed, I can retrieve the Radwindow's argument value. 

Thanks for your help in advance!

Justin
Georgi Tunev
Telerik team
 answered on 20 Dec 2008
1 answer
95 views
Hi

I want to display a tool tip for each cell in grid.Is there any default option in rad grid.


Thanks
Vairam
Dimo
Telerik team
 answered on 20 Dec 2008
1 answer
89 views
How do I make a nested table view load on demand?
Dimo
Telerik team
 answered on 20 Dec 2008
1 answer
82 views
Hi. I add many rad charts dynamically to my web site and i add a event chandler for each radchart. But when i click inside the rad chart, this dissapear and not preserve the state of my rad charts, the only one thing i can do is put in the page load event the function again. How i can preserve the state of the rad charts?? 
Ves
Telerik team
 answered on 20 Dec 2008
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?