The OneStream Community is temporarily frozen until June 29th due to the ongoing maintenance. Please read the blog post here to learn more.

Forum Discussion

seangly's avatar
seangly
New Contributor III
2 years ago
Solved

How to retrieve data on a selected row from a grid view inside a dashboard by clicking a button

I am looking to extract the data of a selected row in a grid view by click a button inside a dashboard;  
  • MarkBird's avatar
    MarkBird
    2 years ago

    Hi seangly 

    Had another thought on this....

    If you don't have a column in stage that that uniquely identify each record in stage then you can just create a column in your data adapter that is a concatenation of the key columns in your table. E.g. (Account|Entity|Flow|UD1...) and set this as the column for the bound parameter.

    (Hide the column using column formats)

    In your business rule, you can extract this information using a string.split e.g.:

    Dim items() As String = rowID.Split("|")
    
    Dim sAccount As String = items(0)
    Dim sEntity As String = items(1)
    Dim sFlow As String = items(2)
    Dim sUD1 As String = items(3)