This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

"Render as tiles" option for REST Grid Widget?


Anyone out there ever do anything (successfully) with the "Render as Tiles" functionality (under Properties / Result) of a REST Grid Widget and, if so, can you share an example? I am not able to get any data back with this option, whereas the "Grid" option returns a list.Basically I'm trying to render or display the list returned by the REST Grid Widget in a scrolling list. A single-select would be ideal.
  • 0

    Hi Paul,What version of SBM are you on? There was a bug introduced in 10.1.3 that is fixed in 10.1.4 where a javascript error was being thrown in that configuration of the REST Grid. What happens if you turn on JavaScript debugging in the browser?Tom
  • 0

    Client is 10.1.3.1When the "Tiles" option is selected the log4javascript console shows JS "Uncaught TypeError: undefined is not a function" errors in "sbm_behavior_extention.js" and "view_rp.js".This system is a combination of SBM 10.1.3.1, SOO 5.0.1, RA 5.0.1 and ALM 4.5.
  • 0

    Hi Paul,I don't recognize the errors you referred to above. I can tell you that the bug introduced in 10.1.3 was in the aeplugin_2009_r2.js file, in the ShowLoadingIcon method. The fix was to change: table.rows[0].style.display = "none";to if (table.rows[0]) table.rows[0].style.display = "none";Tom