Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6658319
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T01:54:02+00:00 2026-05-26T01:54:02+00:00

So my team has inherited a legacy system which provides reports using the dhtmlxgrid

  • 0

So my team has inherited a legacy system which provides reports using the dhtmlxgrid library which loads the data via an xml file. While it is working there is certain functionality that appears to be missing that we have had to hack solutions to provide. Some of these include:

  • A loading indicator built into the actual object that is cogniscent of when the report has loaded (the grid object has something like this but isn’t very reliable imo)
  • Ability to display some sort of pane that indicates there is no data loaded as oppose to just displaying an empty grid
  • Be able to load data from a jsp with embedded xml
  • Better documentation / examples (Not a big priority but would be nice)

In doing some research there appears to be quite a few jQuery libraries that provide grid solutions but it is a bit difficult to narrow down the vast array of options down. Any suggestions would be greatly appreciated. (Don’t need to be jQuery either, anything is appreciated).

Thanks so much.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T01:54:03+00:00Added an answer on May 26, 2026 at 1:54 am

    I’ll try to provide some constructive info.

    While not the best library around, you can do some of the things you need with dhtmlx:

    1.1 Loading indicator: The onXLS and onXLE events signal when transfers start and end. The dhxLayout object can show progress indicators on a particular cell or over the whole document.

    grid.attachEvent("onXLS", function() {  dhxLayout.cells("b").progressOn();  });
    grid.attachEvent("onXLE", function() {  dhxLayout.cells("b").progressOff();  });
    

    You can also use your own loading indicator in those events.

    1.2 Similarly, you can use the onXLE event to manually add a row signalling that there is no data available.

    grid.attachEvent("onXLE", function() { 
        if (grid.getRowsNum() == 0) {
            grid.addRow('noitems', ["No items!"]);
            //grid.setColspan('noitems', 1, 2);
        }
    });
    

    1.3 Local XML loading from strings should work, and XML Islands are supported only in IE iirc. Truly, dhtmlx documentation stinks and the loading format docs are spread all over the forums, the wiki and the samples. For this case, check this:

    http://docs.dhtmlx.com/doku.php?id=dhtmlxgrid:data_loading

    1.4 I share your opinion about documentation (it’s really bad and doesn’t live up to the standards I’d expect from a mature library) but at least I’ve found the forums pretty supportive.

    That said, when coding in Java and Struts2 my favourite is the DisplayTag+jQuery plugin combination ( see ‘Grid’ in http://www.weinfreund.de/struts2-jquery-showcase/index.action ). Java aside, other pure JS solutions I’ve hearing about these days are jmesa ( http://code.google.com/p/jmesa/ ) and DataTables ( http://datatables.net/ ).

    Good luck!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Our team has recently inherited code which is extremely disorganized. As a result, my
I'm not overly familiar with Tomcat, but my team has inherited a complex project
My team has been using SVN for a few years. We now have the
My team has a command parsing library for console apps. Each team around us
Our team has a task system where we post small incremental tasks assigned to
Our team has built a site using Sharepoint and a few custom webparts. We've
Our team has recently been working on a logic and data layer for our
Our team has some code guidelines that I would like to enforce via stylecop
My team has inherited support for 100+ applications. The applications don't have any kind
My team has been using Visual SVN for source code control, and we plan

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.