summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/portalsdk-tag-library/projects/portalsdk-tag-lib/src/lib/rdp/model/data-table-settings.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ecomp-sdk/portalsdk-tag-library/projects/portalsdk-tag-lib/src/lib/rdp/model/data-table-settings.ts')
-rw-r--r--ecomp-sdk/portalsdk-tag-library/projects/portalsdk-tag-lib/src/lib/rdp/model/data-table-settings.ts142
1 files changed, 142 insertions, 0 deletions
diff --git a/ecomp-sdk/portalsdk-tag-library/projects/portalsdk-tag-lib/src/lib/rdp/model/data-table-settings.ts b/ecomp-sdk/portalsdk-tag-library/projects/portalsdk-tag-lib/src/lib/rdp/model/data-table-settings.ts
new file mode 100644
index 00000000..799fcdd0
--- /dev/null
+++ b/ecomp-sdk/portalsdk-tag-library/projects/portalsdk-tag-lib/src/lib/rdp/model/data-table-settings.ts
@@ -0,0 +1,142 @@
+/*-
+ * ============LICENSE_START==========================================
+ * ONAP Portal-SDK
+ * ===================================================================
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * ===================================================================
+ *
+ * Unless otherwise specified, all software contained herein is licensed
+ * under the Apache License, Version 2.0 (the "License");
+ * you may not use this software except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * Unless otherwise specified, all documentation contained herein is licensed
+ * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
+ * you may not use this documentation except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * https://creativecommons.org/licenses/by/4.0/
+ *
+ * Unless required by applicable law or agreed to in writing, documentation
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * ============LICENSE_END============================================
+ *
+ *
+ */
+
+import { Column } from './column';
+
+export class DataTableSettings {
+
+ private _columns: Array<Column> = [];
+ private _paginationsSize:string;
+ private _isPaginationEnabled:boolean;
+ private _isTableSearchEnabled: boolean;
+ private _isReadOnly: boolean;
+ private _isServerSidePaginationEnabled: boolean;
+ private _isServerSideSortingEnabled: boolean;
+ private _toggleEnabled: boolean;
+ private _applicationService: any;
+ private _modalPopupTitle: string;
+
+ constructor() {
+ this._paginationsSize="10";
+ this._isPaginationEnabled = true;
+ this._isReadOnly = false;
+ this._isTableSearchEnabled = true;
+ this._toggleEnabled = false;
+ }
+
+ get columns(): Array<Column> {
+ return this._columns;
+ }
+
+ set columns(value: Array<Column>) {
+ this._columns = value;
+ }
+
+ get isPaginationEnabled(): boolean {
+ return this._isPaginationEnabled;
+ }
+
+ set isPaginationEnabled(value: boolean) {
+ this._isPaginationEnabled = value;
+ }
+
+ get paginationsSize(): string {
+ return this._paginationsSize;
+ }
+
+ set paginationsSize(value: string) {
+ this._paginationsSize = value;
+ }
+
+ get isReadOnly(): boolean {
+ return this._isReadOnly;
+ }
+
+ set isReadOnly(value: boolean) {
+ this._isReadOnly = value;
+ }
+
+ get isServerSidePaginationEnabled (): boolean {
+ return this._isServerSidePaginationEnabled ;
+ }
+
+ set isServerSidePaginationEnabled(value: boolean) {
+ this._isServerSidePaginationEnabled = value;
+ }
+
+ get isServerSideSortingEnabled(): boolean {
+ return this._isServerSideSortingEnabled;
+ }
+
+ set isServerSideSortingEnabled(value: boolean) {
+ this._isServerSideSortingEnabled = value;
+ }
+
+ get isTableSearchEnabled(): boolean {
+ return this._isTableSearchEnabled;
+ }
+
+ set isTableSearchEnabled(value: boolean) {
+ this._isTableSearchEnabled = value;
+ }
+
+ get isToggleEnabled(): boolean {
+ return this._toggleEnabled;
+ }
+
+ set isToggleEnabled(value: boolean) {
+ this._toggleEnabled = value;
+ }
+
+ get applicationService(): any {
+ return this._applicationService;
+ }
+
+ set applicationService(value: any) {
+ this._applicationService = value;
+ }
+
+ get modalPopupTitle(): string {
+ return this._modalPopupTitle;
+ }
+
+ set modalPopupTitle(value: string) {
+ this._modalPopupTitle = value;
+ }
+
+} \ No newline at end of file