Skip to content

Commit

Permalink
feature(REPORT-380146): javascript
Browse files Browse the repository at this point in the history
  • Loading branch information
Vishnu7101 authored and karthickthangasamy committed Aug 20, 2024
1 parent 05d6a06 commit 9f4d37b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
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

0 comments on commit 9f4d37b

Please sign in to comment.