Custom Controls Using Angular Material Get link Facebook X Pinterest Email Other Apps November 07, 2020 Git Repo: https://github.com/yawahang/ohcontrolsFeaturesDatePicker (Date Picker, Time Picker, Date Time Picker, and many more)RatingPicker (Vertical, Horizontal, Custom Icons)Select (Single Select, MultiSelect, Single Column, MultiColumn)Recursive Treeview Get link Facebook X Pinterest Email Other Apps Comments
SQL Server Symmetric Key & Certificate based Encryption With AES_256 Algorithm December 20, 2018 -- Create SYMMETRIC KEY & CERTIFICATE CREATE MASTER KEY ENCRYPTION BY PASSWORD = ' newPasswordForEncryption ' ; CREATE CERTIFICATE MyCertificate WITH SUBJECT = ' MyCryptographyCertificate ' ; CREATE SYMMETRIC KEY MySymetricKey WITH IDENTITY_VALUE = ' MyCryptoIdentityValue ' , ALGORITHM = AES_256 , KEY_SOURCE = ' $dggfg@9e& ' ENCRYPTION BY CERTIFICATE OHCertificate ; SELECT * FROM sys . symmetric_keys ; -- returns created key -- Create SYMMETRIC KEY & CERTIFICATE -- Create Sp to Open CLose SYMMETRIC KEY ... read more »
Kendo Grid Angular Column Width, minResizableWidth dynamic September 11, 2018 https://stackblitz.com/edit/ng-kendo-grid-col-width-kk-12?embed=1&file=app/app.component.ts&view=preview import { Component } from '@angular/core' ; import { sampleProducts } from './products' ; @ Component ({ selector : 'my-app' , template : ` <kendo-grid [data]="gridData" [reorderable]="true" [resizable]="true" [scrollable]="true" ... read more »
Mat Date Picker set Default value, Previous Sunday and Saturday September 22, 2019 https://stackblitz.com/edit/ng-mat-date-value-binding-kk-12?embed=1&file=app/datepicker-value-example.html&view=preview < mat-form-field > < input matInput [ matDatepicker ] = "picker3" placeholder = "Value binding" [ value ] = "startDate.value" > < mat-datepicker-toggle matSuffix [ for ] = "picker3" ></ mat-datepicker-toggle > < mat-datepicker # picker3 ></ mat-datepicker > </ mat-form-field > < mat-form-field > < input matInput [ matDatepicker ] = "picker4" placeholder = "Value binding" [ value ] = "endDate.value" > < mat-datepicker-toggle matSuffix [ for ] = "picker4" ></ mat-datepicker-toggle > < mat-datepicker # picker4 ></ mat-datepicker > </ mat-form-field > import { Component } from ... read more »
Comments
Post a Comment