You need to sign in to do that
Don't have an account?
Vijay Raut
Using the SFDC Console in the SControl
Hi guys....
I want to create SControl which show me the list of Product based on some criteria.
And then if i select on some product name from select list then it shuld show me the conole at bottom which displays the information of that product. ( Something like Console provided in Winter release).
So does anyone having idea of how to accomplish that in SControl?
Or can i use the standard product console in this SControl?
Please reply to this.
Thanks in advance.
Use CSS layers (basically html DIV tag) to create the console. To update the contents in the console:
document.getElementById("consoleId").innerHtml = contents;
Everytime, you change the selection of the product, send a query to SFDC to get the product information. Parse the data and put it in a html table (or whatever format you want it to be) and display it in the console using the above methodology.
To reduce the number of round trips to SFDC, you could get all the product information once and put them in some kind of data structure, and they will be in memory until the browser closes. This will also make the page more responsive.
Regards,