jQuery UI Widgets Forums Layouts Docking Can I have two sets of docking objects?

This topic contains 1 reply, has 2 voices, and was last updated by  Dimitar 11 years ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • Can I have two sets of docking objects? #29287

    sumanth
    Member

    Hello There

    In one of the scenarios I would be using more than one docking. The dock object is pretty much same except that they are being referred from two different contexts.

    Here is what I am trying to do…

    $(document).ready(function () {

    //first docking set
    $(‘#refinerDocking1’).jqxDocking({
    theme: theme,
    mode: ‘docked’,
    orientation: ‘horizontal’,
    width: “96%”,
    height: “auto”
    });

    $(‘#refinerDocking1’).jqxDocking(‘disableWindowResize’, ‘refDocking_a’);
    $(‘#refinerDocking1’).jqxDocking(‘disableWindowResize’, ‘refDocking_b’);

    //second docking set
    $(‘#refinerDocking2’).jqxDocking({
    theme: theme,
    mode: ‘docked’,
    orientation: ‘horizontal’,
    width: “96%”,
    height: “auto”
    });

    $(‘#refinerDocking2’).jqxDocking(‘disableWindowResize’, ‘refDocking_c’);
    $(‘#refinerDocking2’).jqxDocking(‘disableWindowResize’, ‘refDocking_d’);

    }

    I keep getting an error as “Invalid Structure!”, and the entire execution gets halted!

    Regards

    Sumanth

    Can I have two sets of docking objects? #29297

    Dimitar
    Participant

    Hello Sumanth,

    We will also need your HTML code to determine the source of the issue. Please provide us with a larger sample.

    Best Regards,
    Dimitar

    jQWidgets team
    http://www.jqwidgets.com/

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.