jQWidgets Forums

jQuery UI Widgets Forums General Discussions Show more demos

This topic contains 1 reply, has 2 voices, and was last updated by  Peter Stoev 12 years ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • Show more demos #22300

    kc
    Participant

    There needs to be more demos to simulate live production scenarios with minimal source code.  For example, there should be a dynamic modal window demo to simulate an alert.  The View Source should be only a couple of lines.

    Also, when I look at the View Source tab you should HIGHLIGHT the relevant code.

    As a potential customer evaluating your product it is a little frustrating to figure out how to create a simple modal window or how to set default values for a grid filtertype column.

    I am evaluating these jQuery suites for rapid development, hence rapid evaluation.

    Thanks…

    Show more demos #22309

    Peter Stoev
    Keymaster

    Hi,

    We will consider adding more demos in the future. We also already have a Demo with Modal Dialog.

    Here’s also a sample which dynamically adds a Modal Window.

    <!DOCTYPE html>
    <html lang="en">
    <head>
    <link rel="stylesheet" href="../../jqwidgets/styles/jqx.base.css" type="text/css" />
    <script type="text/javascript" src="../../scripts/jquery-1.8.3.min.js"></script>
    <script type="text/javascript" src="../../jqwidgets/jqxcore.js"></script>
    <script type="text/javascript" src="../../jqwidgets/jqxwindow.js"></script>
    <script type="text/javascript">
    $(document).ready(function () {
    var window = $("<div><div>Title</div><div>Content</div></div>");
    window.appendTo(document.body);
    window.jqxWindow({ isModal: true });
    });
    </script>
    </head>
    <body class='default'>
    </body>
    </html>

    Best Regards,
    Peter Stoev

    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.