Make sure you have node and npm installed Directory Setup 1. npm run init 2. create public and src folder 3. Add index.html in public folder 4. Add index.tsx in src folder Add Dependencies npm install react react-dom Add Dev Dependencies npm install typescript webpack webpack-cli webpack-dev-server ts-loader html-webpack-plugin --save-dev npm i --save-dev @types/react-dom typed-scss-modules Add Configuration and Code Add code to src\index.tsx https://github.com/sagarpandey88/templates/blob/main/typescript-react/src/index.tsx Add webpack.config.js https://github.com/sagarpandey88/templates/blob/main/typescript-react/webpack.config.js Add tsconfig.json https://github.com/sagarpandey88/templates/blob/main/typescript-react/tsconfig.json Run the code npm run build npm run start
Hi Folks, We proudly release SharePoint List Script Generators initial alpha release on Codeplex. Although a lot of bugs are expected in this initial alpha release.But in near future as it improves may prove to be boon to SharePoint Administrator. As the name suggests it generates powershell script of SharePoint Lists,Document Libraries,Calender etc. We have now introduced Client object Model version of the code which can be used remotely. Awaiting your Response and Review. Click on for SharePoint Powershell List Generator
Many times we struggle with numeric validations on an input box. Here is a numeric simple textbox plugin. Though i have made sure all the validation occur on keypress some of the validation occur onblur event. This plugin can be improved by your suggestions.They are always welcome. Features : 1. Configurable Number of digits after decimal 2. Configurable Negative Numbers 3. Changes background Color of the input box incase of validation. Usage: $("[isNumeric='true']").NumericTextbox({ NoOfDigitsAfterDecimal: 2, AllowNegativeNumbers: false }); <asp:TextBox ID="txtNumeric" runat="server" Text=".." isNumeric="true"></asp:TextBox> Click here to download Numeric Text box Plugin
Comments
Post a Comment