Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature(REPORT-380146): Bold reports V6.2 Release Changes #35

Merged
merged 1 commit into from
Aug 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
<html lang="en">

<head>
<title>Reports for JavaScript | Bold Reports</title>
<title>Bold Reports JavaScript Demos & Tutorials</title>
<meta charset="utf-8">
<meta name="title" property="og:title" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta name="description" property="og:description" content="Reports sample">
<meta name="description" property="og:description" content="Explore Bold Reports JavaScript Designer and Viewer through various use case scenario demos, example applications, and tutorial samples." />
<meta name="keywords" content="Bold Reports">
<meta property="og:image" content="https://demos.boldreports.com/Images/og_embedded_javascript_examples.png" alt="Reports sample for JavaScript" />
<meta property="og:image:secure_url" content="https://demos.boldreports.com/Images/og_embedded_javascript_examples.png" />
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "javascript-samples",
"version": "6.1.34",
"version": "6.2.32",
"description": "",
"author": "",
"license": "ISC",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ $(function () {
if (subCategory.value != null)
subCategory.clear();
subCategory.dataSource = categoryDropDownList;
$('#update').prop('disabled', !subCategory.value);
}
});
subCategory = new ejs.dropdowns.MultiSelect({
Expand All @@ -65,7 +66,10 @@ $(function () {
width: "180px",
height: "30px",
value: [2],
placeholder: "Select Option"
placeholder: "Select Option",
change: function(args) {
$('#update').prop('disabled', !args.value.length);
}
});
startDate.appendTo('#startdate');
endDate.appendTo('#enddate');
Expand Down Expand Up @@ -107,4 +111,4 @@ function dropDownCheckAll(args) {
if (subCategoryObj.getSelectedItem().length == subCategoryObj.getListData().length) {
$("#checkall").ejCheckBox({ checked: true });
}
}
}
3 changes: 1 addition & 2 deletions src/controls/samples.json
Original file line number Diff line number Diff line change
Expand Up @@ -408,8 +408,8 @@
{
"routerPath": "powerpoint-report",
"sampleName": "PowerPoint Report",
"status": "New",
"basePath": "report-viewer",
"status": "Updated",
"directoryName": "powerpoint-report",
"imageDetails": {
"isLandscape": true,
Expand All @@ -422,7 +422,6 @@
{
"routerPath": "transcript-report",
"sampleName": "Transcript Report",
"status": "New",
"basePath": "report-viewer",
"directoryName": "transcript-report",
"imageDetails": {
Expand Down
Loading