Community Tip - When posting, your subject should be specific and summarize your question. Here are some additional tips on asking a great question. X
Hello,
I am printing some rows on mashup in Grid with 4 columns.
I want to select a row from grid and send a particular value of a column to another service after clicking on that row.
How can I achive this?
Example:-
I am displaying Windchill part information on grid, i.e. Name,number, version, State.
Their are multiple row on grid.
when I select a particular row , the number column value should be send to the service and that service should get executed.
I have got solution for this using double click, but I want this on single click. Also every grid does not show selected Row option.
Please Help.
Solved! Go to Solution.
If the service that is populating the Grid has a datashape assigned, then you will have Selected Row(s) and Selected Row Changed event available to you, those you can use for what you want to accomplish
If the service that is populating the Grid has a datashape assigned, then you will have Selected Row(s) and Selected Row Changed event available to you, those you can use for what you want to accomplish
Just allow multi-select on the Grid, and bind Selected Rows to a service that returns the Infotable with the images an other information.
For the right panel (the one with images and other widgets) use a Repeater widget with the output of the previous service.
Hello @CarlesColl and @PaiChung ,
If I selected 3 row from grid , How to pass all three values to that service ? Because when I do "ctrl+mouse click"
SelectRowChanged takes only last clicked row.
Make sure your service input is of type infotable matching the datashape of the data in the table.
then pass the 'selected row(s)' line to the input parameter
now your service will receive the whole infotable.
@PaiChung Thank you for your support.
Now I am able to get InfoTable of selected rows.
I am binding that service to Repeater , due to which repeater how much the count should be to repeat.
but , Next problem is,
I am having another mashup which display Images and I had to pass the input to the service which is bind to that Image widget.
So How is it possible to send a parameter of service from main Mashup(containing Repeater) to another mashup(which display Image) ?
You can use Mashup parameters for that or in disconnected cases where the main mashup doesn't directly relate to the other mashup, you can use session parameters.