Posts

Showing posts from February, 2020

Remove GIT integration from VSCode

Open settings.json file and write below code ==>      // Whether git is enabled. "git.enabled" :  false ,      // Path and filename of the git executable, e.g. `C:\Program Files\Git\bin\git.exe` (Windows). "git.path" :  null , // When enabled, commits will automatically be fetched from the default remote of the current Git repository. "git.autofetch" :  false ,

Install ngx-admin

Install tools Git -  https://git-scm.com Node.js -  https://nodejs.org . Please note the  version  should be  >=8 Npm - Node.js package manager, comes with Node.js. Please make sure npm  version  is  >=5 Download the code When you completed tools setup, you need to download the code of ngx-admin application. The easiest way to do that is to clone GitHub repository: Open  cmd prompt  and run the below command:==>  git clone https://github.com/akveo/ngx-admin.git After clone is completed, you need to install npm modules:  cd ngx-admin && npm i   run a local copy   npm start 

uncheck radio button on second click jquery

<div class="col-md-3">   <div class="form-group" >     <label for=" " class="ProLabel1">Stage</label>     <div class="ProInput1">       <input type="radio" onclick="preshow()" name="prepost"    value="pre" >Pre Chargesheet       <input  type="radio" onclick="postshow()" name="prepost" value="post">Post Chargesheet     </div>   </div> </div> <script> $(function(){     $('input[name="prepost"]').click(function(){         var $radio = $(this);         // if this was previously checked         if ($radio.data('waschecked') == true)         {             $radio.prop('checked', false);             $radio.data('waschecked', false);         }   ...