| var menu = $find("<%= radMenu1.ClientID %>"); |
| menu.disable(); |

<
telerik:RadWindowManager ID="RadWindowManager1" runat="server" Behavior="Default" InitialBehavior="None" Left="" Style="display: none;" Top="">
<Windows>
<telerik:RadWindow ID="RadWindow1" runat="server" Behavior="Default" Height="500px" InitialBehavior="None" Left="20" Modal="True" NavigateUrl="~/controls/HostPages/AdditionalServicesHost.aspx" OffsetElementID="<%# hypAdditionalServices.ClientID %>" OnClientClose="closewindow" OpenerElementID="<%# hypAdditionalServices.ClientID %>" Style="display: none;" Title="Services Sought" Top="20" Width="600px">
</telerik:RadWindow>
<telerik:RadWindow ID="RadWindow2" runat="server" Behavior="Default" Height="800px" InitialBehavior="None" Left="20" Modal="True" NavigateUrl="~/controls/HostPages/TypesOfCasesHost.aspx" OffsetElementID="<%# hypTypesOfCases.ClientID %>" OnClientClose="closewindow" OpenerElementID="<%# hypTypesOfCases.ClientID %>" Style="display: none;" Title="Type of Case/Issues" Top="20" Width="800px">
</telerik:RadWindow>
<telerik:RadWindow ID="radSurvey" runat="server" Behavior="Default" Height="625px" InitialBehavior="None" Left="20" Modal="True" NavigateUrl="FillOutSurvey.aspx" Style="display: none;" Title="Fill Out Survey" Top="20" Width="450px">
</telerik:RadWindow>
<telerik:RadWindow ID="RadWindow10" runat="server" Behavior="Default" Height="625px" InitialBehavior="None" Left="20" Modal="True" NavigateUrl="practitionerdetails.aspx" Style="display: none;" Title="Practitioner Details" Top="20" Width="450px">
</telerik:RadWindow>
</Windows>
</telerik:RadWindowManager>

How do I extract data (besides the key-id) from a row that I'm deleting? I want to do this from within the method that handles the 'Telerik.Web.UI.RadGrid.DeleteCommandName' event. In that method, I have available a 'Telerik.Web.UI.GridCommandEventArgs' object (e) from which I can extract the ID of the item to be deleted:
GridEditableItem item = e.Item as GridEditableItem;
string recordID = (item.OwnerTableView.DataKeyValues[item.ItemIndex]["RecordID"]).ToString();
But I want to get other data, like the "Description" field or "Address" field.
I tried the following (which did not work):
GridDataItem dataItem = e.Item as GridDataItem;
string address = (dataItem != null ? dataItem["Address"].Text : "No information about the address.");
I get an exception telling me that it "cannot find a cell bound to the column name 'Address'". But I know the column-and-name is there.
I tried using the unique name of the column (by the way, this is a template column):
GridDataItem dataItem = e.Item as GridDataItem;
string address = (dataItem != null ? dataItem["AddressColumn"].Text : "No information about the address.");
But this just returned an empty string.
How do I proceed?
Thanks in advance.

| rootDiv.className = this._getFullSkinName() + (this.get_showCallout() ? " rtVisibleCallout" : "") + (isRightToLeft ? " RadToolTip_" + this._skin + "_rtl" : ""); |
| ... |
| rootDiv.className = this._getFullSkinName() + (this.get_showCallout() ? " rtVisibleCallout" : "") |
| + (isRightToLeft ? " RadToolTip_" + this._skin + "_rtl" : "") |
| + this._getDefinedCssClass(); |
| ... |
| _getDefinedCssClass() : function() { |
| if (this._userDefinedCssClass != "") |
| return " " + this._userDefinedCssClass; |
| } |