Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Properties panel of extension object gets garbled

Hi,

When I make an extension that has one dimension and multiple expressions the properties page of then extension gets garbled. A minimal example seems to be an extension with as definition.xml:

<?xml version="1.0" encoding="utf-8"?>

<ExtensionObject Label="Minimal Extension">

    <Dimension Label="Dimension"  />

    <Expression Multiple="" Label="Expressions" />

</ExtensionObject>

when i change the example to also have multiple dimensions:

<?xml version="1.0" encoding="utf-8"?>

<ExtensionObject Label="Minimal Extension">

    <Dimension Multiple="" Label="Dimension"  />

    <Expression Multiple="" Label="Expressions" />

</ExtensionObject>

then the properties page looks fine.

What is going wrong here? How can I fix this? (I figure messing around in the DynProperties.qvpp QV creates might help, but i have no idea how to, is there any documentation on this?)

More generally, the way the properties panel gets rendered based on the definition.xml you are using seems to be rather fragile. Its easy to create a giant mess. Is that just me or is that the way it works for everyone?

(using QV personal 11.2 SR8 in webview mode)

Thanks,

Jochem

1 Reply
Not applicable
Author

I ended up fixing this by adding

ul.prop-dyn-sortable {

    clear: both;

}

to the css, not ideal because i have no idea what else is rendered by the css, but it works.