Multi Element Picker Upgrade

Comments

3 comments

  • Avatar
    Soren Staun

    Good suggestions here! Option 1 can be fixed via a simple jQuery statement so that the selections each have their own line. Let me know if you want it and I'll go search my troves of JS adaptions - it's 1 line.

    0
    Comment actions Permalink
  • Avatar
    Andrew Jefferys

    Sounds interesting, If this is a quick search for you I'd be interested in having a look!

    0
    Comment actions Permalink
  • Avatar
    Soren Staun

    //Always show dx-tags as blocks and not inline
    $(".dx-tag-container .dx-tag").css("display","block");

    Try this out on a web page and open your browser's console and then copy paste it into the console and see what happens t the multi selectors.

    Code should added when page is loaded, so e.g.

    Sys.WebForms.PageRequestManager.getInstance().add_pageLoaded(function(){

    //Always show dx-tags as blocks and not inline
    $(".dx-tag-container .dx-tag").css("display","block");

    });

    Or whatever way you act when the page is loaded in your JS appendices. :)

    0
    Comment actions Permalink

Please sign in to leave a comment.