21 08, 2020

Migration in EF Code First

2020-08-21T09:37:06+00:00August 21, 2020|Others (Technical)|0 Comments

|
| ByWebner

Code First Conventions In code first approach we create the domain classes first rather than creating the database. Initially, we need to create the domain classes having the properties and then we create the database according to the domain classes. [...]

18 08, 2020

Autocomplete Form Element in Totara/Moodle

2020-08-18T05:50:17+00:00August 18, 2020|eLearning|0 Comments

|
| ByWebner

Introduction The autocomplete element is an advanced form element that is compatible with the standard “Select” form element. When you have large datasets or options, in that case, to use a select list is more difficult. Because, it’s a LONG [...]

10 08, 2020

ZipArchive in C#

2020-08-10T05:18:57+00:00August 10, 2020|Others (Technical)|0 Comments

|
| ByWebner

Introduction ZipArchive is a built-in package in the System.IO.Compression assembly to compress/decompress files in a zip format in C# code. It allows us to work with a collection of compressed files. For this we can do the following things: Get [...]

28 07, 2020

Migrations in Entity Framework 6

2020-07-28T06:10:37+00:00July 28, 2020|Web Development|0 Comments

|
| ByWebner

Whenever a data model changes during development it gets out of sync with the current database in code first approach. The database initialization strategies that we used in our project result in loss of data whenever there are changes in [...]

24 07, 2020

Invisible/Zero-width characters in IE

2020-07-24T05:45:31+00:00July 24, 2020|Web Development|0 Comments

|
| ByWebner

Introduction In Internet Explorer, many times you might have faced issues of invalid date from Date Conversion methods or might have worked with Javascript methods for operations on data. In my case, I used some conversion operation on a date [...]

22 07, 2020

RxJS (Reactive Extensions for JavaScript)

2020-07-22T05:50:28+00:00July 22, 2020|Web Development|0 Comments

|
| ByWebner

Introduction to RxJS RxJS is a popular library among web developers. It provides some features like functional and reactive programming patterns that support working with events and streams. Rxjs provides the functionality to write asynchronous code. The current stable version [...]

20 07, 2020

Validating Downloaded File Using Selenium

2020-07-20T05:55:56+00:00July 20, 2020|Web Development|0 Comments

|
| ByWebner

Validating downloaded files in automation testing In the manual testing process, it is easy validating that the file is downloaded or not because the human mind is fully involved in the testing process. But in the case of automation testing, [...]

16 07, 2020

Font SVG icon issues in IE

2020-08-19T07:56:33+00:00July 16, 2020|Web Development|0 Comments

|
| ByWebner

Problem After downloading the setup of CSS for icon files (.eot, .woff, .tff.) from font awesome library, Devextreme icons, and UI operations like selecting checkboxes inside the Devextreme Datagrid were not working on IE in my c# .net web application. [...]

14 07, 2020

Laravel 5.4 Logs And Errors

2020-07-14T05:53:51+00:00July 14, 2020|PHP Frameworks|0 Comments

|
| ByWebner

Introduction Logfiles: Logs are files that keep a registry or records of events, processes, messages that occur in the operating system or any software that runs. Laravel provides the robust logging services that allow the user to log messages to [...]

10 07, 2020

PHP Best Practices

2020-07-10T06:14:19+00:00July 10, 2020|Web Development|0 Comments

|
| ByWebner

Below are the best practices that should be followed in PHP: 1. define() vs. const In the early version of PHP, one would use define() function to set constants. But with new updates in PHP gained one more way to [...]

6 07, 2020

What is Bootstrap Panel?

2020-07-06T06:32:19+00:00July 6, 2020|Web Development|0 Comments

|
| ByWebner

Introduction Bootstrap is a popular HTML, CSS, and JavaScript framework for developing a responsive and mobile-friendly website. It includes jumbotron, table, button, grid, form, image, alert, wells, container, carousel, panels, glyph icon, badges, labels, progress bar, pagination, pager, list group, [...]

2 07, 2020

Creating Rest API in Node Js

2020-07-02T05:44:27+00:00July 2, 2020|Web Development|1 Comment

|
| ByWebner

Rest API Rest API is an application program interface, that uses GET, POST, PUT, DELETE data. It is referred to as a REPRESENTATIONAL STATE TRANSFER (RESTful) web service. Creating the API Creating Rest API in Node Js firstly needs to [...]

26 06, 2020

Visual Composer in WordPress

2020-06-26T05:55:51+00:00June 26, 2020|Web Development|0 Comments

|
| ByWebner

What is Visual Composer and how to use it in WordPress? Visual composer is a WordPress plugin that permits you to drag and drop components to create and edit your WordPress website. You can simply add new text blocks, buttons, [...]

Go to Top