Difference between revisions of "AppSuite:Debugging the UI"

(Enable capability via URL hash)
 
(21 intermediate revisions by 9 users not shown)
Line 1: Line 1:
<div class="title">Debugging the UI</div>
+
The content on this page has moved to https://documentation.open-xchange.com/latest/ui/miscellaneous/debugging.html
'''Synopsis:''' A collection of hints to debug during UI development
 
__TOC__
 
== What capabilities are available? ==
 
<pre class="language-settings">
 
_(ox.serverConfig.capabilities).pluck("id").sort();
 
</pre>
 
  
== Check settings ==
+
Note: Open-Xchange is in the process of migrating all its technical documentation to a new and improved documentation system (documentation.open-xchange.com). Please note as the migration takes place more information will be available on the new system and less on this system. Thank you for your understanding during this period of transition.
<pre class="language-settings">
 
// check core settings
 
require('settings!io.ox/core').get();
 
// check mail settings
 
require('settings!io.ox/mail').get();
 
</pre>
 
 
 
== Enable/disable capability via URL hash ==
 
Just add the parameter "cap" to URL hash. A leading minus disables a capability. Multiple capabilities separated by comma. Example:
 
<pre language="none">
 
...&cap=emoji,-calendar
 
</pre>
 
[[Category:AppSuite]]
 
[[Category:UI]]
 
[[Category:Developer]]
 

Latest revision as of 10:02, 22 May 2017

The content on this page has moved to https://documentation.open-xchange.com/latest/ui/miscellaneous/debugging.html

Note: Open-Xchange is in the process of migrating all its technical documentation to a new and improved documentation system (documentation.open-xchange.com). Please note as the migration takes place more information will be available on the new system and less on this system. Thank you for your understanding during this period of transition.