ContributionsMost RecentMost LikesSolutionsHow to add message subject and editor to my custom component ? Hello Everyone, Please how can I add this subject in my custom component ? (Subject input which search in kb articles, lia-component-search-auto-complete-before-post.) how can I add message body to my custom component ? (text area which contains icons, MessageEditor) Thanks in advance, Shery Retrieving Session Key Hello everyone, The overview: I want to create message to a forum from custom components using js ajax request. so in order to do this I must add Li-Api-Session-Key. The question: How can I retrieve the existing session key and send it with the request ? Thanks in advance, Shery PerihanKamel How to save the customers' comments in khoros dynamically ? Hello Everyone, How to create a board on the community? Is it required to create a board on top of a product? How can we create a topic message from the community? How can we add a message to a topic dynamically ? The Overview: We want to gather comments from the costumers about a service: so we display a textbox and we want to save the data written to a hidden blog, forum or Q&A. However we don't know which is better for our case? or is there any better option to do so ? Our target is to save the costumers' comments somewhere in khoros. Thanks in advance, Shery PerihanKamel Re: Third Party API - Post request with files uploaded Thank you so much SuzieH Re: Third Party API - Post request with files uploaded Thank you so much SuzieH Re: How to solve the conflict between litium jquery and the jquery that I use ? Hello Parshant Just to make sure that we are on the same page I tried this but I got the same error also "Uncaught ReferenceError: setTablesFilter is not defined at HTMLButtonElement.onclick." <@liaAddScript> ;(function($){ // all js and jquery code here })(LITHIUM.jQuery); </@liaAddScript> Thanks in advance, Shery Re: How to solve the conflict between litium jquery and the jquery that I use ? Hello Parshant First of all thank you so much for your help. secondly when I put all the js code inside the <@liaAddacript> tag, the onclick methods return "Uncaught ReferenceError: setTablesFilter is not defined at HTMLButtonElement.onclick" How to solve the conflict between litium jquery and the jquery that I use ? Hello everyone, How to solve conflict between lithium jquery and the jquery that I use ? The scenario is as follows: I need to have the on document ready function inside the liaAddScript however if I add a script for jquery I get error in the liaAddSCript content and If I didn't add a jquery script I get an error for all the $ is not a function. Ps. this is what I mean by jquery script <script src="/html/assets/jquery.min.js"></script> <@liaAddScript> ;(function($){ $(document).ready(function() { $('table.generic').DataTable(); } ); })(LITHIUM.jQuery); </@liaAddScript> <script> var setTablesFilters = (attrName, tableId, attrIndex) => { var table = $('#'+tableId).DataTable(); let uniqueFilterList = table.column(attrIndex).data().unique().toArray(); return uniqueFilterList.map((val)=>{ return {'name':val, 'checked': false}}); } </script> Thanks in Advance, Shery Re: Third Party API - Post request with files uploaded Hello RyanPi , Thanks for your help but this guide handles creating an integration with a third-party API however this doesn't have an example for form data api (having file attached) and passing it as a parameter to the API. I need to make a post request with form data (passing file). Third Party API - Post request with files uploaded Hello Everyone 🙂 what is the possible methods to call third party API by from Khoros ? taking into consideration that it is post request with files attached "formData". Thanks in advance, Shery Solved