Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
695
Fix first column results in duplicate
posted

If I fix the first column in my dataset, it gets displayed again as a second column ; so its duplicated. What am I doing wrong?

// If we want the first column locked in place..
            IGGridViewColumnDefinition col1 = new IGGridViewColumnDefinition ("name");
            configdsh.FixedLeftColumns.Add (col1);

            // Add data to the grid
            configdsh.Data = common.griddatasource.ToArray();
            configGrid.DataSource = configdsh;

The result, is that I end up with two 'name' columns?

Parents Reply Children
No Data