Select to view content in your preferred language

Configuring ldockable panel size

644
2
Jump to solution
09-10-2018 11:44 AM
Sunita_Khanal
New Contributor II
Hi:
I am using jewelry box theme and was wondering what code do I need to change to configure ldockable panel size. The default width of the panel is 360px, which looks good in desktop but not in mobile. It cover the whole screen and I cannot close the panel. I want to change the ldockable panel width to 300px and move map left by 300px, which is currently 360px. 
 
 
Any help on this regard will be highly appreciated.
 
Thanks, 
Sunita
0 Kudos
1 Solution

Accepted Solutions
RobertScheitlin__GISP
MVP Emeritus

Sunita,

   The jewlerybox themes left panel width  is controlled by the apps main config.json (line 10):

    "groups": [
      {
        "visible": false,
        "panel": {
          "uri": "themes/JewelryBoxTheme/panels/LDockablePanel/Panel",
          "position": {
            "left": 0,
            "top": 40,
            "bottom": 0,
            "width": 360,
            "relativeTo": "browser"
          }
        },

View solution in original post

2 Replies
RobertScheitlin__GISP
MVP Emeritus

Sunita,

   The jewlerybox themes left panel width  is controlled by the apps main config.json (line 10):

    "groups": [
      {
        "visible": false,
        "panel": {
          "uri": "themes/JewelryBoxTheme/panels/LDockablePanel/Panel",
          "position": {
            "left": 0,
            "top": 40,
            "bottom": 0,
            "width": 360,
            "relativeTo": "browser"
          }
        },
Sunita_Khanal
New Contributor II

Thank you so much, Robert for your prompt help. That worked.

Sunita

0 Kudos