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
75
How can I get the _girdview information when i click a button inside ?
posted

Hi everybody. I follow this solution: http://www.infragistics.com/community/forums/t/83529.aspx (button column definition)

In this event, when I clicked on the button inside _gridview column.

- (void)tappedButton
{
    [_button setTitle:@"Pressed" forState:UIControlStateNormal];
}

how about if i want to get _gridview infomarion such as: the row number instead change the text of button.

the source here:

http://www.infragistics.com/community/cfs-filesystemfile.ashx/__key/CommunityServer.Components.PostAttachments/00.00.46.09.38/GridButtonColumn.zip

Please help. thanks in advance.




Parents
No Data
Reply
  • 40030
    Verified Answer
    Offline posted

    Hi

    im not at my computer, but if your button click event is in the cell, you have acces to both the grid and the path:

    self.path.row

    self.gridView

    Hope this helps

    -SteveZ 

Children