この会話は、活動がないためロックされています。新しい投稿を作成してください。
この会話は、活動がないためロックされています。新しい投稿を作成してください。
Hi,
We want to fetch wcmmode value in our custom Javascript file, based on mode some condition needs to be executed. Can you please let us know ways to fetch those.
We have tried using
if(!CQ || !CQ.WCM || !(CQ.WCM.isEditMode(true) || CQ.WCM.isDesignMode(true))){}
but it says CQ is null, though CQ object was there. Any other way we are looking for.
Thanks,
Neha
解決済! 解決策の投稿を見る。
表示
返信
いいね!の合計
Hi Neha i have tried approach suggested above. I
And in test.js i have tested , i am getting all WCM object.
See this community article -- https://edivad.wordpress.com/2013/10/23/whats-my-cq-run-mode/
表示
返信
いいね!の合計
Hi Neha,
See this community article- http://labs.6dglobal.com/blog/2013-04-02/what-my-cq-mode/ . The CQ.WCM object provides methods for checking the current mode, however first you need to see if the object exists. CQ.WCM is not instantiated in publish mode, so it will return null in publish mode.
Are you getting null in author mode or publish.
表示
返信
いいね!の合計
smacdonald2008 wrote...
See this community article -- https://edivad.wordpress.com/2013/10/23/whats-my-cq-run-mode/
If wordpress is blocked by anyone else's corporate proxy (like ours), here's the core of that article:
/* * EditMode.js * * Simple javascript object meant to be used within a CQ development to understand on a Javascript side which my Edit Mode is. * * USAGE: * 1) Drop the file in your clientlib * 2) Reference it in your js.txt * * You can now use it as it will automatically create an "editmode" object * (editmode.isEditMode()) ? "I'm Authoring" : "" * (editmode.isPreviewMode()) ? "I'm in Preview" : "" * (editmode.isDesignMode()) ? "I'm in Design" : "" * (editmode.isDisabled()) ? "I'm in Disabled" : "" */ function EditMode(){ this.isEditMode=function(){ return (CQ.WCM)?CQ.WCM.isEditMode(true):false; }; this.isPreviewMode=function(){ return (CQ.WCM)?CQ.WCM.isPreviewMode(true):false; }; this.isDesignMode=function(){ return (CQ.WCM)?CQ.WCM.isDesignMode(true):false; }; this.isDisabled=function(){ return (!CQ.WCM); } }; var editmode = new EditMode();
Source: https://github.com/davidegiannella/cq-misc/blob/master/EditMode.js
We are getting CQ undefined in console, but when checked in firebug console CQ object is existing
表示
返信
いいね!の合計
Hi Neha i have tried approach suggested above. I
And in test.js i have tested , i am getting all WCM object.
Hi Ankur,
We are including the code snippet in client side javascript that is getting loaded at footer of page, there we are getting CQ undefined error.
表示
返信
いいね!の合計