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

A. I bound a radGrid control to a custom collection called FactoryList(of Tkey).
B. The FactoryList control derived from BindingList (of Tkey) and implements ITypedList as follow:
    1. The GetItemProperties return a collection of ColumnPropertyDescriptor objects, each is derived from PropertyDescriptor class
    2. The ColumnPropertyDescriptor class exposes information based on DataColumn meta-data i.e. ColumnName, ColumnType, and also handle SetValue and Get Value methods.
 
C. A FactoryList instance contains objects that are derived from a base class called BaseEntity. The BaseEntity class implements

ICustomTypeDescriptor, where the GetItemProperties retruns a collection of ColumnPropertyDescriptor same as the FactoryList class does.
D. I use the NeedDataSource event to bind the FactoryList to the radGrid  


All works fine, till I sort the grid rows by clicking on one of the grid column headers. In that case I got the following error:

No property or field 'LST_NAME' exists in type 'Object'  

 -  'LST_NAME' is one the columns I was trying to sort


radGrid:

<

 

telerik:RadGrid ID="grdCustomLists" runat="server" AllowPaging="True"

 

 

    AllowSorting="True" AutoGenerateColumns="False" AutoGenerateDeleteColumn="True"

 

 

    AutoGenerateEditColumn="True" GridLines="None"

 

 

    DataMember="esmBOA.SystemList">

 

<

 

MasterTableView CommandItemDisplay="Top" DataKeyNames="LST_ID" EditMode="InPlace"

 

 

    DataMember="esmBOA.SystemList">

 

 

<CommandItemSettings AddNewRecordText="New List" />

 

<

 

RowIndicatorColumn>

 

<

 

HeaderStyle Width="20px"></HeaderStyle>

 

</

 

RowIndicatorColumn>

 

<

 

ExpandCollapseColumn>

 

<

 

HeaderStyle Width="20px"></HeaderStyle>

 

</

 

ExpandCollapseColumn>

 

 

<Columns>

 

 

<telerik:GridBoundColumn DataField="LST_ID" HeaderText="LST_ID" ReadOnly="True"

 

 

SortExpression="LST_ID" UniqueName="LST_ID" Visible="False"

 

 

Display="False">

 

 

</telerik:GridBoundColumn>

 

 

<telerik:GridBoundColumn DataField="LST_NAME" HeaderText="Name"

 

 

SortExpression="LST_NAME" UniqueName="LST_NAME">

 

 

</telerik:GridBoundColumn>

 

 

<telerik:GridBoundColumn DataField="LST_DSC" HeaderText="Description"

 

 

SortExpression="LST_DSC" UniqueName="LST_DSC">

 

 

</telerik:GridBoundColumn>

 

 

<telerik:GridCheckBoxColumn DataField="LST_IS_SYSTEM" DataType="System.Boolean"

 

 

HeaderText="LST_IS_SYSTEM" SortExpression="LST_IS_SYSTEM"

 

 

UniqueName="LST_IS_SYSTEM" Visible="False" Display="False" ReadOnly="True">

 

 

</telerik:GridCheckBoxColumn>

 

 

<telerik:GridCheckBoxColumn DataField="LST_CAN_EDIT" DataType="System.Boolean"

 

 

HeaderText="LST_CAN_EDIT" SortExpression="LST_CAN_EDIT"

 

 

UniqueName="LST_CAN_EDIT" Visible="False" Display="False" ReadOnly="True">

 

 

</telerik:GridCheckBoxColumn>

 

 

<telerik:GridCheckBoxColumn DataField="LST_CAN_DELETE"

 

 

DataType="System.Boolean" HeaderText="LST_CAN_DELETE"

 

 

SortExpression="LST_CAN_DELETE" UniqueName="LST_CAN_DELETE"

 

 

Visible="False" Display="False" ReadOnly="True">

 

 

</telerik:GridCheckBoxColumn>

 

 

<telerik:GridCheckBoxColumn DataField="LST_IS_DELETED"

 

 

DataType="System.Boolean" HeaderText="LST_IS_DELETED"

 

 

SortExpression="LST_IS_DELETED" UniqueName="LST_IS_DELETED"

 

 

Visible="False" Display="False" ReadOnly="True">

 

 

</telerik:GridCheckBoxColumn>

 

 

</Columns>

 

</

 

MasterTableView>

 

 

<ClientSettings>

 

 

<Selecting AllowRowSelect="True" />

 

 

</ClientSettings>

 

 

</telerik:RadGrid>

 

ColumnPropertyDescriptor Class (VB) - SystemField class stores the DataColumn meta-data

Public

 

Class ColumnPropertyDescriptor

 

 

Inherits System.ComponentModel.PropertyDescriptor

 

#Region

 

"Attributes"

 

 

    Private _column As SystemField

 

#End

 

Region

 

#Region

 

"Constractor"

 

 

 

Public Sub New(ByVal column As SystemField)

 

 

        MyBase.New(column.ColumnName, Nothing)

 

        _column = column

 

End Sub

 

#End

 

Region

 

#Region

 

"Properties"

 

 

Public Property Column() As SystemField

 

 

Get

 

 

    Return _column

 

 

End Get

 

 

Set(ByVal value As SystemField)

 

_column = value

 

End Set

 

 

End Property

 

#End

 

Region

 

#Region

 

"PropertyDescriptor Overrides"

 

#Region

 

"Properties"

 

 

Public Overrides ReadOnly Property Converter() As System.ComponentModel.TypeConverter

 

 

Get

 

 

    Return ComponentModel.TypeDescriptor.GetConverter(Me.PropertyType)

 

 

End Get

 

 

End Property

 

 

Public Overrides ReadOnly Property DisplayName() As String

 

 

Get

 

 

    Return _column.Properties.Caption

 

 

End Get

 

 

End Property

 

 

Public Overrides ReadOnly Property Name() As String

 

 

Get

 

 

    Return _column.ColumnName

 

 

End Get

 

 

End Property

 

 

Public Overrides ReadOnly Property ComponentType() As System.Type

 

 

Get

 

 

    Return Me.PropertyType

 

 

End Get

 

 

End Property

 

 

Public Overrides ReadOnly Property IsReadOnly() As Boolean

 

 

Get

 

 

    Return _column.Properties.IsEdit

 

 

End Get

 

 

End Property

 

 

Public Overrides ReadOnly Property PropertyType() As System.Type

 

 

Get

 

 

    Return _column.SystemColumnType

 

 

End Get

 

 

End Property

 

#End

 

Region

 

#Region

 

"Public Methods"

 

 

Public Overrides Function CanResetValue(ByVal component As Object) As Boolean

 

 

    Return False

 

 

End Function

 

 

 

Public Overrides Function GetValue(ByVal component As Object) As Object

 

 

 

    Dim item As BaseEntity = CType(component, BaseEntity)

 

 

    Return item.Field(Me._column.ColumnName)

 

 

End Function

 

 

 

 

Public Overrides Sub ResetValue(ByVal component As Object)

 

 

    Throw New NotImplementedException

 

 

End Sub

 

 

Public Overrides Sub SetValue(ByVal component As Object, ByVal value As Object)

 

 

    Dim item As BaseEntity = CType(component, BaseEntity)

 

    item.Field(

Me._column.ColumnName) = value ' value is stored in a key dictionary

 

 

End Sub

 

 

Public Overrides Function ShouldSerializeValue(ByVal component As Object) As Boolean

 

 

    Return False

 

 

End Function

 

#End

 

Region

 

 

#End

 

Region

 

End

 

Class

 



BaseEntity Class:

Imports

 

System.ComponentModel

 

Public

 

Class BaseEntity

 

 

        Implements ICustomTypeDescriptor

 

#Region

 

"Data Members"

 

 

Private _dataItem As Connectivity.DataItem

 

 

Private _values As New Dictionary(Of String, Object)

 

 

Private _originalID As String

 

 

Private _originalVTS As Date

 

 

Private _isNew As Boolean = False

 

 

Private _isModified As Boolean = False

 

 

Private _PropertyCollection As PropertyDescriptorCollection = New PropertyDescriptorCollection(Nothing)

 

#End

 

Region

 

#Region

 

"Constractor"

 

 

Public Sub New(ByRef DataItem As esmOPM.Connectivity.DataItem, ByVal fetchLevel As esmOPM.FetchLevel, ByVal entityDataRow As DataRow)

 

    _dataItem = DataItem

 

    If IsNothing(entityDataRow) Then

 

        _isNew =

True

 

 

        ' create empty dictionary

 

 

        For Each sf In _dataItem.Fields(fetchLevel)

 

            _values.Add(sf.ColumnName,

Nothing)

 

            _PropertyCollection.Add(

New ColumnPropertyDescriptor(sf))

 

 

    Next sf

 

 

Else

 

        _isNew =

False

 

 

        ' parse row-dara values

 

 

        For Each sf In _dataItem.Fields(fetchLevel)

 

        _values(sf.ColumnName) = entityDataRow(sf.ColumnName)

        _PropertyCollection.Add(

New ColumnPropertyDescriptor(sf))

 

 

    Next

 

    _originalID = entityDataRow(_dataItem.PKFieldName).ToString

    _originalVTS = entityDataRow(_dataItem.VTSFieldName)

 

End If

 

 

End Sub

 

#End

 

Region

 

#Region

 

"Public Data Properties"

 

 

Public Property Field(ByVal columnName As Object) As Object

 

 

Get

 

 

        Return _values(columnName)

 

 

End Get

 

 

Set(ByVal value As Object)

 

    _setFieldValue(columnName, value)

 

End Set

 

 

End Property

 

 

Public ReadOnly Property ID() As String

 

 

Get

 

 

    Return _values(_dataItem.PKFieldName).ToString

 

 

End Get

 

 

End Property

 

 

Public Property IsNew() As Boolean

 

 

Get

 

 

    Return _isNew

 

 

End Get

 

 

Set(ByVal value As Boolean)

 

    _isNew = value

 

End Set

 

 

End Property

 

 

Public Property IsModified() As Boolean

 

 

Get

 

 

    Return _isModified

 

 

End Get

 

 

Set(ByVal value As Boolean)

 

    _isModified = value

 

End Set

 

 

End Property

 

#End

 

Region

 

#Region

 

"Internal Properties"

 

 

Friend ReadOnly Property Original_ID() As String

 

 

Get

 

 

    Return _originalID

 

 

End Get

 

 

End Property

 

 

Friend ReadOnly Property Original_VTS() As Date

 

 

Get

 

 

    Return _originalVTS

 

 

End Get

 

 

End Property

 

#End

 

Region

 

#Region

 

"Public Methods"

 

 

Public Sub ParseValues(ByVal valuesDisctionary As Dictionary(Of String, Object))

 

 

    For Each de In valuesDisctionary

 

 

        Me.Field(de.Key) = de.Value

 

 

    Next de

 

 

End Sub

 

 

 

#End

 

Region

 

#Region

 

"Private Methods"

 

 

Private Sub _setFieldValue(ByVal columnName As String, ByVal value As Object)

 

 

        ' store old values

 

 

        If Not (_isNew) AndAlso columnName = _dataItem.PKFieldName Then

 

        _originalID =

Me.Field(columnName).ToString

 

 

        End If

 

 

        If Not (_isNew) AndAlso columnName = _dataItem.VTSFieldName Then

 

        _originalVTS =

CDate(Me.Field(columnName))

 

 

        End If

 

 

        ' set current value

 

    _values(columnName) = value

 

    ' mark this object as being modified

 

    _isModified =

True

 

 

    ' set new timestamp value

 

    _values(_dataItem.VTSFieldName) = Now()

 

End Sub

 

 #End

 

Region

 

 

Public Function GetAttributes() As System.ComponentModel.AttributeCollection Implements System.ComponentModel.ICustomTypeDescriptor.GetAttributes

 

 

    Return New System.ComponentModel.AttributeCollection(Nothing)

 

 

End Function

 

 

Public Function GetClassName() As String Implements System.ComponentModel.ICustomTypeDescriptor.GetClassName

 

 

    Return Nothing

 

 

End Function

 

 

Public Function GetComponentName() As String Implements System.ComponentModel.ICustomTypeDescriptor.GetComponentName

 

 

    Return Nothing

 

 

End Function

 

 

Public Function GetConverter() As System.ComponentModel.TypeConverter Implements System.ComponentModel.ICustomTypeDescriptor.GetConverter

 

 

    Return Nothing

 

 

End Function

 

 

Public Function GetDefaultEvent() As System.ComponentModel.EventDescriptor Implements System.ComponentModel.ICustomTypeDescriptor.GetDefaultEvent

 

 

    Return Nothing

 

 

End Function

 

 

Public Function GetDefaultProperty() As System.ComponentModel.PropertyDescriptor Implements System.ComponentModel.ICustomTypeDescriptor.GetDefaultProperty

 

 

    Return Nothing

 

 

End Function

 

 

Public Function GetEditor(ByVal editorBaseType As System.Type) As Object Implements System.ComponentModel.ICustomTypeDescriptor.GetEditor

 

 

    Return Nothing

 

 

End Function

 

 

Public Function GetEvents() As System.ComponentModel.EventDescriptorCollection Implements System.ComponentModel.ICustomTypeDescriptor.GetEvents

 

 

    Return New EventDescriptorCollection(Nothing)

 

 

End Function

 

 

Public Function GetEvents(ByVal attributes() As System.Attribute) As System.ComponentModel.EventDescriptorCollection Implements System.ComponentModel.ICustomTypeDescriptor.GetEvents

 

 

    Return New EventDescriptorCollection(Nothing)

 

 

End Function

 

 

Public Function GetProperties() As System.ComponentModel.PropertyDescriptorCollection Implements System.ComponentModel.ICustomTypeDescriptor.GetProperties

 

 

    Return _PropertyCollection

 

 

End Function

 

 

Public Function GetProperties(ByVal attributes() As System.Attribute) As System.ComponentModel.PropertyDescriptorCollection Implements System.ComponentModel.ICustomTypeDescriptor.GetProperties

 

 

    Return _PropertyCollection

 

 

End Function

 

 

Public Function GetPropertyOwner(ByVal pd As System.ComponentModel.PropertyDescriptor) As Object Implements System.ComponentModel.ICustomTypeDescriptor.GetPropertyOwner

 

 

    Return Me

 

 

End Function

 

End

 

Class

and finally ... FactoryList Class:

 

Imports

 

System.ComponentModel

 

 

 

Imports

 

esmOPM.Connectivity

 

 

 

Public

 

Class esmList(Of Tkey)

 

 

    Inherits BindingList(Of Tkey)

 

 

    Implements ITypedList

 

 

 

 

#Region

 

"Data Members"

 

 

 

 

 

Private _PropertyCollection As PropertyDescriptorCollection = New PropertyDescriptorCollection(Nothing)

 

 

 

#End

 

Region

 

#Region

 

"Properties"

 

 

 

 

 

Friend WriteOnly Property Fields() As List(Of SystemField)

 

 

Set(ByVal value As List(Of SystemField))

 

 

 

End Set

 

 

 

 

 

End Property

 

#End

 

Region

 

#Region

 

"Constractors"

 

 

 

 

 

 

Public Sub New(ByVal fields As List(Of SystemField))

 

 

    MyBase.New()

 

 

    ' init propertyCollection

 

 

 

 

    _PropertyCollection.Clear()

 

    For Each sf In fields

 

        _PropertyCollection.Add(

New ColumnPropertyDescriptor(sf))

 

 

    Next sf

 

 

End Sub

 

#End

 

Region

 

 

 

 

 

Public Function GetItemProperties(ByVal listAccessors() As System.ComponentModel.PropertyDescriptor) As System.ComponentModel.PropertyDescriptorCollection Implements System.ComponentModel.ITypedList.GetItemProperties

 

 

    Return _PropertyCollection

 

 

End Function

 

 

 

 

 

Public Function GetListName(ByVal listAccessors() As System.ComponentModel.PropertyDescriptor) As String Implements System.ComponentModel.ITypedList.GetListName

 

 

    Return "DefaultView"

 

 

 

 

 

 

 

 

End Function

 

 

 

 

 

 

 

 

End

 

Class

 

Mira
Telerik team
 answered on 29 Oct 2009
0 answers
90 views
I have tabstrip/multipage. pageviews are filled from user controls. I need to input some data (like first/last name) on the first pageview and then show this value on other pageviews.
server-side assigning is absolutely not appropriate as I have page already rendered when I start my input with the first tab clicked.
So I decided to change variables with jQuery on client-side when the tab is clicked.
But My Jquery cannot find the classes (and variables) from the pageviews.

When I take a look at page source I see that there is only first pageview. I assume that others are rendered dynamically.

Can you please advice me the best technique how I can change the variables with the same names and same classes on all my pageviews?

I tried the option to render page "OnDemand", but it didn't help.

Elena
Elena Lavrinenko
Top achievements
Rank 1
 asked on 29 Oct 2009
3 answers
139 views
hi,

 

I have a radcombobox and a button
i want to when clik the button a news windows open with doc pdf
I write this code :

 

Protected Sub ImageButton1_Click(ByVal sender As ObjectByVal e As System.Web.UI.ImageClickEventArgs) Handles ImageButton1.Click  
 
Dim varpdf As String = "../up_fic/" & RadComboBox1.SelectedValue  
 
If varpdf <> "" Then 
 
Response.Write("<script>window.open('" + varpdf + "');</script>")  
 
End If 
 
End Sub 
 
this work but not fine the pop up blocker block alltime this action
how i do to open normaly a news windows ?

Thanks.

casa51
Top achievements
Rank 2
 answered on 29 Oct 2009
5 answers
299 views
Hi, I am using a browser add-on called httpwatch which allows me to see network traffic while I upload a document, I notice when i am uploading I get a lot of HTTP 401 unauthorized errors which should not happen since I am an authenticated user, then imeadiately I get code 200 which indicates OK, I get this every few hundred bytes until the upload completes.  Can anyone explain what is happening here, I am executing some server side processing on the files in UploadedFiles collection so the Target property is not set.  The site does have windows authentication turned ON but again I am a authenticated user.  Is there any permissions needed to be applied because I am doing server-side processing.  I am using 2009 Q2 build 826.35.  Most of the 401 errors come from the RadUploadProgressHandler.ashx issuing GET requests.

Thanks Kerry
Genady Sergeev
Telerik team
 answered on 29 Oct 2009
2 answers
311 views
Hello I looked at an example here on how nested view template is used to have multiple grids. I am currently working on a grid using nested view template and have few question. Before I start my question here is my code:

ASPX:

<telerik:RadGrid runat="server" ID="rgCommittee" GridLines="None" AllowSorting="true"
                AllowPaging="true" AllowFilteringByColumn="true" PageSize="30" AutoGenerateColumns="false"
                ShowGroupPanel="true" ShowFooter="true" OnNeedDataSource="rgCommittee_NeedDataSource"
                OnItemDataBound="rgCommittee_ItemDataBound" OnItemCommand="rgCommittee_ItemCommand"
                OnItemCreated="rgCommittee_ItemCreated">
                <MasterTableView DataKeyNames="CommitteeID,CommitteeTypeID" AllowMultiColumnSorting="true"
                    GroupLoadMode="Server">
                    <NestedViewTemplate>
                        <asp:Panel ID="pnlMemberList" runat="server" Visible="true">
                            <telerik:RadGrid runat="server" ID="rgCommitteeMember" GridLines="None" AllowSorting="true"
                                AllowPaging="true" AllowFilteringByColumn="true" PageSize="30" AutoGenerateColumns="false"
                                ShowGroupPanel="true" ShowFooter="true" OnNeedDataSource="rgCommitteeMember_NeedDataSource"
                                OnItemCommand="rgCommitteeMember_ItemCommand" OnItemDataBound="rgCommitteeMember_ItemDataBound">
                                <ValidationSettings EnableValidation="true" ValidationGroup="vgGrid" />
                                <MasterTableView DataKeyNames="CommitteeMemberID,PersonID" HierarchyLoadMode="SeverOnDemand"
                                    EditMode="InPlace" CommandItemDisplay="TopAndBottom" CommandItemSettings-AddNewRecordText="Add new committee member(s)">
                                    <Columns>
                                        <telerik:GridBoundColumn HeaderText="Member TypeID" AllowFiltering="true" DataField="CommitteeMemberID"
                                            SortExpression="CommitteeMemberID" Visible="false" />
                                        <telerik:GridEditCommandColumn ButtonType="LinkButton" UpdateText="Update" CancelText="Cancel"
                                            EditText="Edit" />
                                        <telerik:GridButtonColumn ButtonType="LinkButton" ConfirmText="Are you sure you want to delete this record?"
                                            CommandName="Delete" Text="Delete" UniqueName="DeleteColumn" />
                                        <telerik:GridTemplateColumn>
                                            <EditItemTemplate>
                                                <PersonSearch:GridPersonSearch ID="gpsMemberName" runat="server" SearchType="Employee" ReturnField="PersonID"
                                                    TwoColumnSearch="false" RequiredFlag="false" />
                                            </EditItemTemplate>
                                            <ItemTemplate>
                                                <asp:Label runat="server" ID="lblEmpName" />
                                            </ItemTemplate>
                                        </telerik:GridTemplateColumn>
                                    </Columns>
                                    <NoRecordsTemplate>
                                        <div>
                                            There are no member(s) for this committee.</div>
                                    </NoRecordsTemplate>
                                </MasterTableView>
                            </telerik:RadGrid>
                        </asp:Panel>
                    </NestedViewTemplate>
                    <Columns>
                        <telerik:GridBoundColumn HeaderText="Committee TypeID" AllowFiltering="true" DataField="CommitteeTypeID"
                            SortExpression="CommitteeTypeID" Visible="false" />
                        <telerik:GridBoundColumn HeaderText="Committee Type" AllowFiltering="true" DataField="CommitteeTypeName"
                            SortExpression="CommitteeTypeName" />                       
                    </Columns>
                    <NoRecordsTemplate>
                        <div>
                            There are no committee assigned to you.</div>
                    </NoRecordsTemplate>
                </MasterTableView>
            </telerik:RadGrid>
C# code:
        protected void rgCommittee_NeedDataSource(object source, GridNeedDataSourceEventArgs e)
        {
            rgCommittee.DataSource = Data.Committee.GetList(PersonID);
        }

        protected void rgCommittee_ItemDataBound(object source, GridItemEventArgs e)
        {
            GridDataItem gdiItem = e.Item as GridDataItem;

            if (gdiItem == null)
            {
                return;
            }
            else
            {
                if(!gdiItem.IsInEditMode)
                {
                    //if ((DataBinder.Eval(gdiItem.DataItem, "EmpName") == null) && (DataBinder.Eval(gdiItem.DataItem, "ChairFlag") == null))
                    //{
                        
                    //}

                }
            }
        }

        protected void rgCommittee_ItemCommand(object source, GridCommandEventArgs e)
        {
            if (e.CommandName == RadGrid.ExpandCollapseCommandName)
            {
                ((GridDataItem)e.Item).ChildItem.FindControl("pnlMemberList").Visible = !e.Item.Expanded;
            }
        }

        protected void rgCommittee_ItemCreated(object source, GridItemEventArgs e)
        {
            if (e.Item is GridDataItem)
            {
                intCommitteeID = Convert.ToInt32(e.Item.OwnerTableView.DataKeyValues[e.Item.ItemIndex]["CommitteeID"].ToString());
            }

            if (e.Item is GridNestedViewItem)
            {
                e.Item.FindControl("pnlMemberList").Visible = ((GridNestedViewItem)e.Item).ParentItem.Expanded;
            }
        }

        protected void rgCommitteeMember_NeedDataSource(object source, GridNeedDataSourceEventArgs e)
        {
            RadGrid rgCommitteeMember = source as RadGrid;
            rgCommitteeMember.DataSource = Data.CommitteeMember.GetList();
        }

        protected void rgCommitteeMember_ItemDataBound(object source, GridItemEventArgs e)
        {
            if (e.Item is GridDataInsertItem)
            {
                if (e.Item.IsInEditMode)
                {
                    #region Declare Controls

                    UserControls.GridPersonSearch gpsMemberName = (UserControls.GridPersonSearch)e.Item.FindControl("gpsMemberName");

                    #endregion

                    #region Bind Controls

                    int intPersonID;
                    if (gpsMemberName != null && e.Item.ItemIndex != -1 &&
                        e.Item.OwnerTableView.DataKeyValues[e.Item.ItemIndex]["PersonID"] != null &&
                        int.TryParse(e.Item.OwnerTableView.DataKeyValues[e.Item.ItemIndex]["PersonID"].ToString(), out intPersonID))
                    {
                        gpsMemberName.SetDropDownPersonID = intPersonID;
                    }
                    #endregion

                }
            }
            else if (e.Item is GridDataItem)
            {
                #region Controls

                if (!e.Item.IsInEditMode)
                {
                    // view mode (Label controls)
                    ((Label)e.Item.FindControl("lblEmpName")).Text = DataBinder.Eval(e.Item.DataItem, "EmpName") != null ? DataBinder.Eval(e.Item.DataItem, "EmpName").ToString() : string.Empty;
                }
                else
                {
                    // edit mode

                    #region Declare Controls

                    //Committee Type un-editable column.
                    UserControls.GridPersonSearch gpsMemberName = (UserControls.GridPersonSearch)e.Item.FindControl("gpsMemberName");

                    #endregion

                    #region Bind Controls

                    int intPersonID;
                    if (gpsMemberName != null && e.Item.ItemIndex != -1 &&
                        e.Item.OwnerTableView.DataKeyValues[e.Item.ItemIndex]["PersonID"] != null &&
                        int.TryParse(e.Item.OwnerTableView.DataKeyValues[e.Item.ItemIndex]["PersonID"].ToString(), out intPersonID))
                    {
                        gpsMemberName.SetDropDownPersonID = intPersonID;
                    }

                    #endregion
                }

                #endregion
            }
        }

        protected void rgCommitteeMember_ItemCommand(object sender, GridCommandEventArgs e)
        {
            //int intRoleID;
            GridDataItem gdiItem = e.Item as GridDataItem;

            if (gdiItem == null)
            {
                return;
            }

            if (e.Item.IsInEditMode)
            {
                UserControls.GridPersonSearch gpsMemberName = (UserControls.GridPersonSearch)e.Item.FindControl("gpsMemberName");

                switch (e.CommandName)
                {
                    case "PerformInsert":
                        Page.Validate("vgGrid");

                        if (Page.IsValid)
                        {
                           
                        }
                       else
                       {
                          rgCommitteeList.Controls.Add(new LiteralControl(string.Format("<span class=\"ErrorText\">There was an error inserting the record.</span>")));
                       }
                        break;
                    case "Update":
                        Page.Validate("vgGrid");

                        if (Page.IsValid)
                        {                          
                           
                        }
                        else
                        {
                           rgCommitteeList.Controls.Add(new LiteralControl(string.Format("<span class=\"ErrorText\">There was an error updating the record.</span>")));
                        }
                        break;
                }
            }          
        }

The parent Grid displays Committee Name for example student committee. When I click on the student committee it loads the rad grid inside the nested view template that displays me the names of the student associated to that committee.

If there aren't any students for that committee it should display the message from no records template.

My questions are:

When the I call the child rad grid from the nested view template it does not display message from the no record template.
Secondly if there is data it does not display data either on the child grid.
But when I click the add button on the child rad grid it fires the NeedDataSource Event on the Child grid and displays the no records template message or displays student data then!

Can you please tell me how do I handle this, since after I  click the committee name it should call the need data source event on child but it isn't doing that for some reason can you kindly let me know about it.

Thanks and Regards
Amitesh
thecruciable
Top achievements
Rank 1
 answered on 29 Oct 2009
3 answers
121 views
I have an ASP.NET 2.0 web application that was using RadAjaxManager and RadComboBox from Q3 2007. I recently upgraded those controls to the Q3 2008 version. The only code I had to change was with the Ajax components, which is why I put most post here and not in the combobox forum. I think my problem is an interaction with the updated Ajax components.

My problem is with a few RadComboBoxes. I had developed them as multi-select containing checkboxes. After the upgrade, the checkboxes appear, but the text of the checkbox item does not.

Here is the relavent page code and javascript that is attached to the RadComboBoxes. Thanks.

 

<script type="text/javascript">

 

 

function stopPropagation(e)

 

{

e.cancelBubble =

true;

 

 

 

if (e.stopPropagation)

 

{

e.stopPropagation();

}

}

 

var supressDropDownClosing = false;

 

 

 

function OnClientDropDownClosing(sender, eventArgs)

 

{

eventArgs.set_cancel(supressDropDownClosing);

}

 

 

function OnClientSelectedIndexChanging(sender, eventArgs)

 

{

eventArgs.set_cancel(supressDropDownClosing);

}

 

 

function OnClientDropDownOpening(sender, eventArgs)

 

{

supressDropDownClosing =

true;

 

}

 

 

function OnClientBlur(sender)

 

{

supressDropDownClosing =

false;

 

 

sender.toggleDropDown();

}

 

 

function checkboxClick()

 

{

collectSelectedItems();

}

 

 

function getItemCheckBox(item)

 

{

 

//Get the 'div' representing the current RadComboBox Item.

 

 

var itemDiv = item.get_element();

 

 

 

//Get the collection of all 'input' elements in the 'div' (which are contained in the Item).

 

 

var inputs = itemDiv.getElementsByTagName("input");

 

 

 

for (var inputIndex = 0; inputIndex < inputs.length; inputIndex++)

 

{

 

var input = inputs[inputIndex];

 

 

 

//Check the type of the current 'input' element.

 

 

if (input.type == "checkbox")

 

{

 

return input;

 

}

}

 

 

return null;

 

}

 

 

function collectSelectedItems()

 

{

 

var combo = $find("<%# ddlRace.ClientID %>");

 

 

var items = combo.get_items();

 

 

 

var selectedItemsTexts = "";

 

 

var selectedItemsValues = "";

 

 

 

var itemsCount = items.get_count();

 

 

 

for (var itemIndex = 0; itemIndex < itemsCount; itemIndex++)

 

{

 

var item = items.getItem(itemIndex);

 

 

 

var checkbox = getItemCheckBox(item);

 

 

 

//Check whether the Item's CheckBox) is checked.

 

 

if (checkbox.checked)

 

{

selectedItemsTexts += item.get_text() +

", ";

 

selectedItemsValues += item.get_value() +

", ";

 

}

}

selectedItemsTexts = selectedItemsTexts.substring(0, selectedItemsTexts.length - 2);

selectedItemsValues = selectedItemsValues.substring(0, selectedItemsValues.length - 2);

 

 

//Set the text of the RadComboBox with the texts of the selected Items, separated by ','.

 

combo.set_text(selectedItemsTexts);

 

//Set the comboValue hidden field value with values of the selected Items, separated by ','.

 

document.getElementById(

"comboValue").value = selectedItemsValues;

 

 

 

//Clear the selection that RadComboBox has made internally.

 

 

if (selectedItemsValues == "")

 

{

combo.clearSelection();

}

}

 

</script>

 

 

<script type="text/javascript">

 

 

function RequestStart(sender, args)

 

{

args.EventTargetElement.disabled =

true;

 

}

 

function ResponseEnd(sender, args)

 

{

args.EventTargetElement.disabled =

false;

 

}

 

</script>

 



 

 

<

 

input type="hidden" id="comboValue" value="" runat="server" />

 

 

 

 

 

<rad:RadComboBox ID="ddlRace" runat="server" Skin="Vista" Width="290px" AllowCustomText="True"

 

 

 

 

 

OnClientDropDownOpening="OnClientDropDownOpening" OnClientSelectedIndexChanging="OnClientSelectedIndexChanging"

 

 

 

 

 

OnClientBlur="OnClientBlur">

 

 

 

 

 

<Items>

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem7" runat="server" Text="Select..." Value="" />

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem8" runat="server" Text="Alaskan Native" Value="Alaskan Native" />

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem9" runat="server" Text="American Indian"

 

 

 

 

 

Value="American Indian" />

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem10" runat="server" Text="Asian" Value="Asian" />

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem11" runat="server" Text="Black or African American"

 

 

 

 

 

Value="Black or African American" />

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem12" runat="server" Text="Native Hawaiian/Other Pacific Islander"

 

 

 

 

 

Value="Native Hawaiian/Other Pacific Islander" />

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem13" runat="server" Text="White" Value="White" />

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem14" runat="server" Text="Hispanic/Latino"

 

 

 

 

 

Value="Hispanic/Latino" />

 

 

 

 

 

</Items>

 

 

 

 

 

<ItemTemplate>

 

 

 

 

 

<asp:CheckBox runat="server" ID="cbxRace" onclick="stopPropagation(event);" Text="" />

 

 

 

 

<%

# DataBinder.Eval(Container, "Text") %>

 

 

</ItemTemplate>

 

 

 

 

 

</rad:RadComboBox>

 

 

 



 

 

 

<input type="hidden" id="comboValue2" value="" runat="server" />

 

 

 

 

 

<rad:RadComboBox ID="ddlWorkSettings" runat="server" Skin="Vista" Width="290px" AllowCustomText="True"

 

 

 

 

 

OnClientDropDownOpening="OnClientDropDownOpening" OnClientSelectedIndexChanging="OnClientSelectedIndexChanging"

 

 

 

 

 

OnClientBlur="OnClientBlur">

 

 

 

 

 

<Items>

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem15" runat="server" Text="Select..." Value="" />

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem16" runat="server" Text="Academic Institution"

 

 

 

 

 

Value="Academic Institution" />

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem17" runat="server" Text="Government - Federal"

 

 

 

 

 

Value="Government - Federal" />

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem18" runat="server" Text="Government - State"

 

 

 

 

 

Value="Government - State" />

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem19" runat="server" Text="Government - Local"

 

 

 

 

 

Value="Government - Local" />

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem20" runat="server" Text="Government - Territory"

 

 

 

 

 

Value="Government - Territory" />

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem21" runat="server" Text="Government - Tribal"

 

 

 

 

 

Value="Government - Tribal" />

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem22" runat="server" Text="Healthcare Services"

 

 

 

 

 

Value="Healthcare Services" />

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem23" runat="server" Text="Non-profit Organization"

 

 

 

 

 

Value="Non-profit Organization" />

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem24" runat="server" Text="Private Industry"

 

 

 

 

 

Value="Private Industry" />

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem25" runat="server" Text="Other" Value="Other" />

 

 

 

 

 

</Items>

 

 

 

 

 

<ItemTemplate>

 

 

 

 

 

<asp:CheckBox ID="cbxWorkSettings" runat="server" onclick="stopPropagation(event);"

 

 

 

 

 

Text="" /><%# DataBinder.Eval(Container, "Text") %>

 

 

</ItemTemplate>

 

 

 

 

 

</rad:RadComboBox>

 

 

 


 

 

<input type="hidden" id="comboValue3" value="" runat="server" />

 

 

 

 

 

<rad:RadComboBox ID="ddlProfessionalRoles" runat="server" Skin="Vista" Width="290px"

 

 

 

 

 

AllowCustomText="True" OnClientDropDownOpening="OnClientDropDownOpening" OnClientSelectedIndexChanging="OnClientSelectedIndexChanging"

 

 

 

 

 

OnClientBlur="OnClientBlur">

 

 

 

 

 

<Items>

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem26" runat="server" Text="Select..." Value="" />

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem27" runat="server" Text="Allied Health Professional"

 

 

 

 

 

Value="Allied Health Professional" />

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem28" runat="server" Text="Administrator/Director/Manager"

 

 

 

 

 

Value="Administrator/Director/Manager" />

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem29" runat="server" Text="Administrative Support Staff"

 

 

 

 

 

Value="Administrative Support Staff" />

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem30" runat="server" Text="Computer Specialist"

 

 

 

 

 

Value="Computer Specialist" />

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem31" runat="server" Text="Epidemiologist/Biostatistician/Statistician"

 

 

 

 

 

Value="Epidemiologist/Biostatistician/Statistician" />

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem32" runat="server" Text="Emergency Responder"

 

 

 

 

 

Value="Emergency Responder" />

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem33" runat="server" Text="Faculty/Educator"

 

 

 

 

 

Value="Faculty/Educator" />

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem34" runat="server" Text="Environmental Health Specialist"

 

 

 

 

 

Value="Environmental Health Specialist" />

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem35" runat="server" Text="Health Educator"

 

 

 

 

 

Value="Health Educator" />

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem36" runat="server" Text="Informatician" Value="Informatician" />

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem37" runat="server" Text="Laboratory Professional"

 

 

 

 

 

Value="Laboratory Professional" />

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem38" runat="server" Text="Nurse" Value="Nurse" />

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem39" runat="server" Text="Physician" Value="Physician" />

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem40" runat="server" Text="Public Health Service Provider (non-clinical)"

 

 

 

 

 

Value="Public Health Service Provider (non-clinical)" />

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem41" runat="server" Text="Veterinarian" Value="Veterinarian" />

 

 

 

 

 

<rad:RadComboBoxItem ID="RadComboBoxItem42" runat="server" Text="Other" Value="Other" />

 

 

 

 

 

</Items>

 

 

 

 

 

<ItemTemplate>

 

 

 

 

 

<asp:CheckBox ID="cbxProfessionalRoles" runat="server" onclick="stopPropagation(event);"

 

 

 

 

 

Text="" /><%# DataBinder.Eval(Container, "Text") %>

 

 

</ItemTemplate>

 

 

 

 

 

</rad:RadComboBox>

 

 

 


Veselin Vasilev
Telerik team
 answered on 29 Oct 2009
3 answers
96 views
I have upgraded from RADcontrols 2006 to 2009.  The below code that used to work is no more working.  This code is for treeview in a combobox. once a node item is selected it supposed to be the show up on the radcombobox text. I am able to populate and navigate through treeview items but when a node is selected, the item is not being displayed as the selected item in combobox.

 <div onmousedown="allowCBClose(true);">
                    <radC:RadComboBox ID="ddlHierachy" runat="server" RadControlsDir="~/Resources/" Skin="WindowsGray"
                        SkinsPath="~/Resources/Skin/RadControls/ComboBox/Skins" Height="200px" NoWrap="True"
                        Width="80%" OnClientDropDownClosing="OnClientDropDownClosing" AllowCustomText="true"
                        EnableLoadOnDemand="true" OnItemsRequested="ItemsRequested" OnClientItemsRequested="OnClientItemsRequested"
                        OnClientKeyPressing="keypressing">
                        <ItemTemplate>
                            <div onmouseup="allowCBClose(false);">
                                <radT:RadTreeView ID="rtEventCycle" runat="server" BeforeClientClick="ProcessClientClick"
                                    AfterClientClick="ProcessClientClick">
                                </radT:RadTreeView>
                            </div>
                        </ItemTemplate>
                    </radC:RadComboBox>
                </div>
Can some one help me upgrade the code to the newer version of radcontrols in 2009. I changed radC to telerik. But it doesn't work and then it says BeforeClientClick and AfterClientClick are no more valid.
Schlurk
Top achievements
Rank 2
 answered on 29 Oct 2009
7 answers
162 views
Hello,

What I am trying to do is to have only one visible Upload at a time, selecting a file will result in hiding it and creating a new clean one - we are not actually hiding it, we are displaying it in a different GUI.

How can i do that? both client side and serverside (if ajax is used).
Genady Sergeev
Telerik team
 answered on 29 Oct 2009
7 answers
658 views
Hello,

I'm using a RadGrid like a listbox, with a ClientSelectColumn so the selection of the items cam be handled client side. I have enabled client selection and multi row selection. These work fine if the checkbox is the item clicked. If I select multiple items by clicking on the checkbox in the ClientSelectColumn and then select another row by clicking outside of the checkbox, the row I clicked in is selected and the checkbox for that row is checked, but all of the previously checked items are now unchecked. Why are the previously selected rows unselected when the row itself is clicked?

Thanks,
Casey

<telerik:RadGrid ID="RadGrid2" runat="server" AutoGenerateColumns="False"   
        GridLines="None" ShowHeader="False" DataSourceID="SqlDataSource2" 
        Height="100px" AllowMultiRowSelection="True">  
<MasterTableView CellSpacing="-1" ShowHeadersWhenNoRecords="False">  
    <Columns> 
    <telerik:GridClientSelectColumn UniqueName="column">  
    </telerik:GridClientSelectColumn> 
    <telerik:GridBoundColumn UniqueName="column1" DataField="DESCRIPTION"></telerik:GridBoundColumn> 
    <telerik:GridBoundColumn UniqueName="column2" DataField="ID" Visible="false"></telerik:GridBoundColumn> 
    </Columns> 
</MasterTableView> 
        <ClientSettings> 
            <Selecting AllowRowSelect="True" EnableDragToSelectRows="False" /> 
            <Scrolling AllowScroll="True" /> 
        </ClientSettings> 
</telerik:RadGrid> 
Casey
Top achievements
Rank 1
 answered on 29 Oct 2009
1 answer
193 views
Hello,

I'm trying to use a RadEditor inside a Popup that is coming from a RadGrid. This is a part of my code:

    <telerik:RadCodeBlock ID="RadCodeBlock1" runat="server"
    <script type="text/javascript"
       var popUp; 
       function PopUpShowing(sender, eventArgs) 
       { 
            popUp = eventArgs.get_popUp(); 
            popUp.style.top = "50px"
       } 
    </script> 
    </telerik:RadCodeBlock> 
    <telerik:RadGrid ID="RadGrid1" AllowAutomaticUpdates="true" runat="server" AllowAutomaticInserts="True" AllowFilteringByColumn="True" AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False" DataSourceID="dsNyheter" GridLines="None" Skin="Vista" MasterTableView-AllowFilteringByColumn="true" MasterTableView-AllowMultiColumnSorting="true" MasterTableView-AllowNaturalSort="true" MasterTableView-EditMode="PopUp" MasterTableView-HierarchyLoadMode="ServerOnDemand" PagerStyle-FirstPageToolTip="Första sidan" PagerStyle-LastPageToolTip="Sista sidan" PagerStyle-Mode="Slider" PagerStyle-NextPagesToolTip="Nästa sidorna" PagerStyle-NextPageToolTip="Nästa sida" PagerStyle-PageSizeLabelText="Rader per sida:" PagerStyle-PrevPagesToolTip="FöregÃ¥ende sidor" PagerStyle-PrevPageToolTip="FöregÃ¥ende sida" PagerStyle-PagerTextFormat="Ändra sida: {4} &nbsp;Sida <strong>{0}</strong> av <strong>{1}</strong>, rad <strong>{2}</strong> till <strong>{3}</strong> av <strong>{5}</strong>." StatusBarSettings-ReadyText="Redo" StatusBarSettings-LoadingText="Laddar..." SortingSettings-SortToolTip="Klicka här för att sortera" SortingSettings-SortedDescToolTip="Sorterad fallande" SortingSettings-SortedAscToolTip="Sorterad stigande" MasterTableView-NoMasterRecordsText="Data saknas." MasterTableView-NoDetailRecordsText="Inga underrader finns." GroupingSettings-GroupSplitDisplayFormat="Visar {0} av {1} rader." GroupingSettings-GroupContinuesFormatString="Gruppen fortsätter pÃ¥ nästa sida." GroupingSettings-GroupContinuedFormatString="... grupp fortsätter frÃ¥n föregÃ¥ende sida. " GroupingSettings-CollapseTooltip="SlÃ¥ ihop grupp" GroupingSettings-ExpandTooltip="Expandera grupp" GroupingSettings-UnGroupButtonTooltip="Klicka här för att avgruppera"
        <ClientSettings> 
            <ClientEvents OnPopUpShowing="PopUpShowing" /> 
            <Selecting AllowRowSelect="true" /> 
        </ClientSettings> 
        <MasterTableView DataKeyNames="news_id" DataSourceID="dsNyheter" AllowFilteringByColumn="True" AllowMultiColumnSorting="True" EditMode="PopUp" CommandItemDisplay="TopAndBottom"
            <CommandItemTemplate> 
                <asp:LinkButton ID="LinkButton2" runat="server" CommandName="InitInsert"><img style="border:0px;vertical-align:middle; margin-top: 5px; margin-bottom: 8px; margin-left: 10px; margin-right: 8px;" alt="" src="Images/AddRecord.gif" />Lägg till nyhet</asp:LinkButton>&nbsp;&nbsp; 
            </CommandItemTemplate> 
            <Columns> 
                <telerik:GridBoundColumn DataField="news_id" HeaderText="ID" ReadOnly="true" Display="false" UniqueName="news_id"
                </telerik:GridBoundColumn> 
                <telerik:GridBoundColumn DataField="news_headln" HeaderText="Rubrik" UniqueName="news_headln"
                </telerik:GridBoundColumn> 
                <telerik:GridBoundColumn DataField="news_startdate" DataFormatString="{0:yyyy-MM-dd hh:mm}" HeaderText="Startdatum" UniqueName="news_startdate"
                </telerik:GridBoundColumn> 
                <telerik:GridBoundColumn DataField="news_enddate" HeaderText="Slutdatum" UniqueName="news_enddate"
                </telerik:GridBoundColumn> 
                <telerik:GridEditCommandColumn CancelText="Avbryt" EditText="Ändra"
                </telerik:GridEditCommandColumn> 
            </Columns> 
            <EditFormSettings EditFormType="Template" CaptionDataField="news_headln" CaptionFormatString="Ändra nyhet: {0}"
            <PopUpSettings  Width="648px" Height="600px" Modal="true" /> 
                <EditColumn UniqueName="EditCommandColumn1">                    
                </EditColumn> 
                <FormTemplate> 
                    <table border="0" cellpadding="4" cellspacing="0"
                        <tr> 
                            <td style="padding-left: 8px;"
                                Rubrik 
                            </td> 
                            <td> 
                                Startdatum 
                            </td> 
                            <td> 
                                Slutdatum 
                            </td> 
                        </tr> 
                        <tr> 
                            <td style="padding-left: 8px;"
                                <asp:TextBox ID="news_headln" Text='<%# Bind("news_headln") %>' Width="300" runat="server"></asp:TextBox> 
                            </td> 
                            <td> 
                                <asp:TextBox ID="news_startdate" Text='<%# Bind("news_startdate") %>' Width="100" runat="server"></asp:TextBox> 
                            </td> 
                            <td> 
                                <asp:TextBox ID="news_enddate" Text='<%# Bind("news_enddate") %>' Width="100" runat="server"></asp:TextBox> 
                            </td> 
                        </tr> 
                        <tr> 
                            <td colspan="3" style="padding-left: 8px;"
                                InnehÃ¥ll 
                            </td> 
                        </tr> 
                        <tr> 
                            <td colspan="3" style="padding-left: 8px;"
                                <telerik:RadEditor ID="RadEditor1" TableLayoutCssFile="~/Empty.css" Content='<%# Bind("news_content") %>' style="z-index: 90000;" Width="622" runat="server" Skin="Office2007" ToolsFile="ToolsFile.xml" SpellCheckSettings-DictionaryLanguage="sv-SE" ImageManager-ViewPaths="~/UserFiles/Image" ImageManager-UploadPaths="~/UserFiles/Image" ImageManager-SearchPatterns="*.gif,*.jpg,*.jpeg,*.png,*.bmp" DocumentManager-ViewPaths="~/UserFiles/File" DocumentManager-UploadPaths="~/UserFiles/File" ImageManager-DeletePaths="~/UserFiles/Image"
                                    <Languages> 
                                        <telerik:SpellCheckerLanguage Code="sv-SE" Title="Swedish" /> 
                                    </Languages> 
                                    <CssFiles> 
                                        <telerik:EditorCssFile Value="~/Admin/EditorContentArea.css" /> 
                                    </CssFiles> 
                                </telerik:RadEditor> 
                            </td> 
                        </tr> 
                        <tr> 
                            <td colspan="3" style="padding-left: 8px;"
                                <asp:Button ID="btnUpdate" CommandName="Update" runat="server" Text="Spara" /> 
                                <asp:Button ID="btnUpdateCancel" CommandName="Cancel" runat="server" Text="Avbryt" /> 
                            </td> 
                        </tr> 
                    </table> 
                </FormTemplate> 
            </EditFormSettings> 
        </MasterTableView> 
        <ClientSettings AllowColumnsReorder="True" ReorderColumnsOnClient="True"
            <Selecting AllowRowSelect="True" /> 
        </ClientSettings> 
    </telerik:RadGrid> 

The problem is that in Firefox, after reloading the page the RadEditor becomes disabled and loses it's text. This only happens in Firefox, in IE it works great.

Anyone know why this is happening?

Thanks,
Michael


Rumen
Telerik team
 answered on 29 Oct 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
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
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?