This is a migrated thread and some comments may be shown as answers.

[Solved] Unable to find IsExpandable property in GridViewRow

3 Answers 96 Views
GridView
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Barry
Top achievements
Rank 1
Barry asked on 20 Sep 2010, 02:01 PM
Hello,

I am new to this control and I am wondering why the ".IsExpandable" property is not existing.

Code:

 

private void gvMain_RowLoaded(object sender, RowLoadedEventArgs e)

 

{

 

GridViewRow a = e.Row as GridViewRow;

 

 

 

}

"a" does not have the IsExpandable property. I have viewed some examples in the net and I can't find something wrong. Please advice. Sorry for the newbie question.

3 Answers, 1 is accepted

Sort by
0
Milan
Telerik team
answered on 20 Sep 2010, 02:09 PM
Hi Barry John Britanico,

Could you please check this once again? IsExpandable property is defined on GridViewRow for sure.


Greetings,
Milan
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Barry
Top achievements
Rank 1
answered on 20 Sep 2010, 04:05 PM
I have double checked by creating a new project and immediately tested the property

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using Telerik.Windows.Controls.GridView;
using Telerik.Windows.Data;

namespace SilverlightApplicationICCI
{
    public partial class MainPage : UserControl
    {
        public MainPage()
        {
            
            InitializeComponent();

            GridViewRow a;
            

        }
    }
}


"a" still does not have that property. Please see attachment for more details.
0
Barry
Top achievements
Rank 1
answered on 21 Sep 2010, 01:46 AM
Hello ALL

I discovered that I was referencing to an old Telerik .dll. I acquired the latest version of the dll and I am now able to find the property.
Tags
GridView
Asked by
Barry
Top achievements
Rank 1
Answers by
Milan
Telerik team
Barry
Top achievements
Rank 1
Share this question
or