Welcome to the Xceed Community Sign in | Join | Help
Community Search  

How do I navigate to (show in viewport) specific row

Sort Posts: Previous Next
  •  07-22-2008, 10:18 AM Post no. 13679

    How do I navigate to (show in viewport) specific row

    I think you understand my problem. Please help me!..Stick out tongue
  •  07-23-2008, 2:04 AM Post no. 13696 in reply to 13679

    Re: How do I navigate to (show in viewport) specific row

    Hi Yuriy,

    Fist of all get hold of the item you wish to navigate
    System.Data.DataRowView dv = myGrid.Items[myIndex];

    Then set this item as the current item
    myGrid.CurrentItem = dv;

    Then select it
    myGrid.BringItemIntoView(dv);

    and you are done...

    Enjoy


    Abdullah Ansari
    Senior Software Engineer
    Outworks Solutions Private Limited

    Everything is okay in the end. If its not okay, then its not the end.
    Filed under: ,
  •  07-23-2008, 5:00 AM Post no. 13703 in reply to 13696

    Re: How do I navigate to (show in viewport) specific row

    Thanks so much for your quick and thorough reply! Beer
  •  09-06-2008, 5:26 AM Post no. 14964 in reply to 13696

    Re: How do I navigate to (show in viewport) specific row

    Thank you very much sir.

     

    its workin and my prolem is solved by using this

     

    thank  

     

View as RSS news feed in XML
Contact | Site Map | Reviews | Legal Terms of Use | Trademarks | Privacy Statement Copyright 2008 Xceed Software Inc.