BIRT is an Eclipse-based open source reporting system for web applications. It has 3 main components: a report designer, a runtime component and charting engine. The Eclipse BIRT runtime report engine encourages self-service report creation and a robust charting engine features all standard aggregation and calculation functions.
Add rich, interactive content to applications including:
If this is your product, you can request to edit it here.
Version Reviewing: good to use
"suitable for web applications"
Summary:
the tool is free and can download. it suitable for the bussiness
"Good tool"
Summary:
Powerful tool.
|
What does this code do?
var thisQuestion = ('#question'+{QID}); $('input[type="radio"]', thisQuestion).on('click', function () { $('input[type="radio"]', thisQuestion).prop('disabled', false); $('input[type="radio"]:checked', thisQuestion).each(function(i) { var thisRow = $(this).closest('tr.answers-list'); $('input[type="radio"]', thisRow).not(this).prop('disabled', true); }); }); What action does this code perform?
Programming Language: JavaScript