Skip to content

Commit

Permalink
feature(REPORT-380146): angular
Browse files Browse the repository at this point in the history
  • Loading branch information
Vishnu7101 authored and karthickthangasamy committed Aug 20, 2024
1 parent ee109db commit 5a411b2
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-samples",
"version": "6.1.34",
"version": "6.1.32",
"scripts": {
"test": "gulp test",
"postinstall": "gulp copy",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ export class ExternalParameterReportComponent {
if (subCategory.value != null)
subCategory.clear();
subCategory.dataSource = categoryDropDownList;
$('#update').prop('disabled', !subCategory.value);
}
});
var subCategory: MultiSelect = new MultiSelect({
Expand All @@ -91,7 +92,10 @@ export class ExternalParameterReportComponent {
showSelectAll: true,
width: "180px",
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
3 changes: 1 addition & 2 deletions src/app/components/samples.json
Original file line number Diff line number Diff line change
Expand Up @@ -438,8 +438,8 @@
"routerPath": "powerpoint-report",
"className": "PowerpointReportComponent",
"sampleName": "PowerPoint Report",
"status": "New",
"basePath": "report-viewer",
"status": "Updated",
"directoryName": "powerpoint-report",
"imageDetails": {
"isLandscape": true,
Expand All @@ -453,7 +453,6 @@
"routerPath": "transcript-report",
"className": "TranscriptReportComponent",
"sampleName": "Transcript Report",
"status": "New",
"basePath": "report-viewer",
"directoryName": "transcript-report",
"imageDetails": {
Expand Down
7 changes: 5 additions & 2 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,18 @@

<head>
<meta charset="utf-8">
<title>RDL Sample | Angular Report Designer | Bold Reports</title>
<title>Bold Reports Angular Demos & Tutorials</title>
<base href="/">
<meta property="og:title" content="Bold Reports Angular Demos & Tutorials" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="The Angular Bold Report Designer allows the end-users to arrange/customize the reports appearance in browsers. It helps to edit the {{sampleName}} for customer's application needs.">
<meta name="description" property="og:description" content="Explore Bold Reports Angular Designer and Viewer through various use case scenario demos, example applications, and tutorial samples." />
<meta property="og:image" content="https://demos.boldreports.com/Images/og_embedded_angular_examples.png" alt="Reports sample for Angular" />
<meta property="og:image:secure_url" content="https://demos.boldreports.com/Images/og_embedded_angular_examples.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta name="twitter:card" content="summary_large_image" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">

<script>
function validateBrowser() {
var uaValidate = navigator.userAgent.match(/(MSIE |Trident.*rv[ :])([0-9]+)/);
Expand All @@ -32,6 +34,7 @@

<body>
<div hidden id="reports-analytics" data-queue="Bold Reports - Demos - Angular"></div>

<style>
.splash {
position: absolute;
Expand Down

0 comments on commit 5a411b2

Please sign in to comment.