jQWidgets Forums

Forum Replies Created

Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts

  • zakstev
    Participant

    hi,

    checkChange event is not working, please check.

    $(“#SelectAllCompanies”).on(‘checkChange’, function (event) {
    alert(“Test”);
    });

    Thanks…

    Regards,
    MZ

    in reply to: CRUD using Grid CRUD using Grid #80058

    zakstev
    Participant

    It’s exactly as per my requirement…i think i made the right decision by purchasing jqwidgets…Thank you very much Dimitar…


    zakstev
    Participant

    Thanks a lot Mr. Hristo for giving me the right solution…


    zakstev
    Participant

    hi Hristo,

    which property/Method i should apply to remove invalid item which is not there in the combolist?

    in reply to: Switching themes Switching themes #79215

    zakstev
    Participant

    Dear Peter,

    I want exclusively Arctic theme, In document it shows only ‘Energy Blue’ example even this is not working after applying on the Grid.

    Regards,
    zakstev

    in reply to: Switching themes Switching themes #79194

    zakstev
    Participant

    Hi Team,

    How can i change Grid’s theme? I would like to apply Arctic theme, I’m trying as per documented
    <link rel=”stylesheet” href=”../../jqwidgets/styles/jqx.arctic.css” type=”text/css” />
    but its not applying it. Please help.

    Thanks in advannce.

    Regards,
    Zak

    in reply to: Invisible Tree Invisible Tree #78456

    zakstev
    Participant

    hi Mariya,

    From your documentation i tried both examples as shown below.
    1) Basic Tree Sample created from UL——–>Worked but without drilldown icons in it it.
    2) Basic Tree Sample created by setting the ‘source’ property(option).—–> Not at all working.

    Please guide me with the right controls!

    Regards,
    M.Z

    in reply to: Invisible Tree Invisible Tree #78444

    zakstev
    Participant

    Dear Mariya,

    I’m running jqwidgets-ver3.9.1 and all CSS and JS files are referred correctly and data files are also referring correctly and
    about the server I’m running Apache Tomcat which is configured and running very fine.

    in reply to: Invisible Tree Invisible Tree #78440

    zakstev
    Participant

    Give me the solution on tree control and Grid, If you can solve my problem i will place my order right now.

    in reply to: Invisible Tree Invisible Tree #78439

    zakstev
    Participant

    hi Mariya,

    I know that Ajax works only with server or localhost. I’m running local host. As i see only few controls are working on your demo!

    in reply to: Invisible Tree Invisible Tree #78423

    zakstev
    Participant

    hi Team,

    Appreciate if you could reply to my problem.
    Thanks in advance.

    Regards,
    M.Z

    in reply to: Invisible Tree Invisible Tree #78408

    zakstev
    Participant

    Controls looks nice, will it work in real time?

    in reply to: Invisible Tree Invisible Tree #78407

    zakstev
    Participant

    <%@ page language=”java” contentType=”text/html; charset=ISO-8859-1″
    pageEncoding=”ISO-8859-1″%>
    <!DOCTYPE html PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN” “http://www.w3.org/TR/html4/loose.dtd”>

    <html lang=”en”>
    <head>
    <title id=’Description’>This sample demonstrates how to load Tree Items via Ajax
    </title>
    <link rel=”stylesheet” href=”D:\css\jqx.base.css” type=”text/css” />
    <script type=”text/javascript” src=”D:\js\jquery-1.11.1.min.js”></script>
    <script type=”text/javascript” src=”D:\js\demos.js”></script>
    <script type=”text/javascript” src=”D:\js\jqxcore.js”></script>
    <script type=”text/javascript” src=”D:\js\jqxbuttons.js”></script>
    <script type=”text/javascript” src=”D:\js\jqxscrollbar.js”></script>
    <script type=”text/javascript” src=”D:\js\jqxpanel.js”></script>
    <script type=”text/javascript” src=”D:\js\jqxtree.js”></script>
    <script type=”text/javascript” src=”D:\js\jqxexpander.js”></script>
    <script type=”text/javascript”>
    $(document).ready(function () {
    // Create jqxTree
    var tree = $(‘#jqxTree’);
    var source = null;
    $.ajax({
    async: false,
    url: “ajaxroot.htm”,
    success: function (data, status, xhr) {
    source = jQuery.parseJSON(data);
    }
    });
    tree.jqxTree({ source: source, height: 300, width: 200 });
    tree.on(‘expand’, function (event) {
    var label = tree.jqxTree(‘getItem’, event.args.element).label;
    var $element = $(event.args.element);
    var loader = false;
    var loaderItem = null;
    var children = $element.find(‘ul:first’).children();
    $.each(children, function () {
    var item = tree.jqxTree(‘getItem’, this);
    if (item && item.label == ‘Loading…’) {
    loaderItem = item;
    loader = true;
    return false
    };
    });
    if (loader) {
    $.ajax({
    url: loaderItem.value,
    success: function (data, status, xhr) {
    var items = jQuery.parseJSON(data);
    tree.jqxTree(‘addTo’, items, $element[0]);
    tree.jqxTree(‘removeItem’, loaderItem.element);
    }
    });
    }
    });
    });
    </script>
    </head>
    <body class=’default’>
    <div id=”jqxTree”>
    </div>
    </body>
    </html>

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