I have a simple table (5 or 6 columns) and another one full of details (86 columns). I want to display a specific row from the detailed table when I click on a row in the simple one, but I want the row in a transposed view (in the same page or in different page). I've tried to do it, but I am stuck with two problem:
1- I've done it in the same page with hiddedsavedsearch and simpleresult modules like this: (The problem is the simpleresult module inherit its count form the simple table so I cant view the 86 columns transposed and I cant make the simple table 86 row per page) <module name="HiddenSavedSearch"> <param name="savedSearch">all_coulmns</param> <module name="ConvertToIntention"> <param name="intention"> <param name="name">addterm</param> <param name="arg"></param> <param name="flags"> <list>indexed</list> </param> </param> <module name="JobProgressIndicator"></module> <module name="SimpleResultsHeader"> <module name="SimpleResultsTable"> <param name="drilldown">off</param> <param name="entityName">results</param> <param name="allowTransformedFieldSelect">True</param> <module name="Gimp"/> </module> <param name="entityName">results</param> <param name="headerFormat">Details of the selected row</param> </module> </module> </module>
2-When I tried it in a different page, it just didn't work (the result appeared but not in a transposed). I looked at the URL: test_view?q=search(my search except"|transpose")&earliest=1378004801&latest=1378004802 Note: when I add |transpose before earliest manually, it works fine.
I want to solve any one of previous two problems.
Regards,,