ContributionsMost RecentMost LikesSolutionsRe: PATCH request with http.client FreeMarker Context Object This is strange, I am using the same code in multiple endpoints without any issue. Are you seeing any FreeMarker exceptions? will you able to debug on the other end (API) whether the request is coming or not? http.clinet.request freemarker context object will throw exception if the API status code is other than 200, maybe check API status code as well. Re: PATCH request with http.client FreeMarker Context Object HI KevinSaquing , Yes, it is possible by passing header X-HTTP-Method-Override = PATCH. Following is the syntax. <#assign response = http.client.request(API).header("X-HTTP-Method-Override", "PATCH").post()/> Thanks, Phani Re: Angular question Hi javagamer, Try following code. <div id="smartlingArticle" ng-controller="SmartlingArticleController" li-bindable> </div> <@liaAddScript> ;(function (angular) { /* Registering the app with Lithium Angualr App */ var coreModuleDeps = LITHIUM.AngularSupport.getOptions().coreModuleDeps || []; coreModuleDeps.push('smartlingArticleApp'); LITHIUM.AngularSupport.setOptions({ coreModuleDeps: coreModuleDeps }); angular.module('smartlingArticleApp',[]) .controller('SmartlingArticleController',function($scope){ }); })(LITHIUM.angular); </@liaAddScript> Hope this helps! Thanks, Phani Few clarifications needed in responsive Hi, When lithium enables responsive in stage current OOB quilts and components will be upgraded to fit responsive. will this responsive upgrade blocks the self-studio publish? What is the best option to push some kind of p1 fix to production (non-responsive) during the responsive development/validation in a stage without disturbing the current production quilts and components? Any help is greatly appreciated. Thanks! Re: How to apply sorting on multiple columns using LIQL V2 query? Thank you ChhamaJ Re: How to apply sorting on multiple columns using LIQL V2 query? Hi ChhamaJ, This is what I am missing. Thank you for your quick response on this. I really appreciate your help. It would be nice if we have this information in the release notes. Could you please share the document that has multiple sorting information. Thanks & Regards, Phani How to apply sorting on multiple columns using LIQL V2 query? Hi, I am trying to get recent messages from top Kudoed message list. Following is the query that I am using. SELECT * FROM messages ORDER BY kudos.sum(weight) desc, post_time DESC I remember it was working before. Now it's not working. The query is always giving top kudos messages only. Can somebody help me to find the right query? Thanks, Phani SolvedRe: How to change error page quilt in Page Initialization script? Hi Payal, Thank you for the response. As per our requirement, we have to change the quilt of "Node not found" page dynamically based on role. Thanks & regards, Phani Re: How to enable author and kudos column in Forum Page? There is no Lithium setting available for kudos and author like we have for views and replies. In our community, these columns were hidden in the skin. Solved the issue. How to change error page quilt in Page Initialization script? Hi, Is there any way we can change quilt of "Node not found" (displays when we try to access board or category which is not present in the community. Example) dynamically in Page initialization script? I used following code to replace quilt. Unable to change the quilt. ${http.response.replaceQuilt("ErrorPage", "ErrorPage.custom")} Appreciate your help in this regard. Thanks & Regards, Phani