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
545
Fixed column on the left : how to make it not selectable
posted

Hallo,

i have a gridview and i wanna make only the fixed column on the left not selectable.

I have tried as follows :

-(IGCellPath*)gridView:(IGGridView*)gridView willSelectCellAtPath:(IGCellPath*)path;

{

    if (gridView != _griglia || path.columnIndex == 0)

        return nil;    

    return path;

}

but in this case i cannot select two columns, fixed one and also the first column of my grid.

How can i solve this?

Thx

    Stefano Giannotta