Tag - JavaScript

Introducing to Function as a Service (FaaS)

You've probably heard of SaaS, PaaS, and IaaS, but have you ever heard of Function as a Service (FaaS)?The FaaS market is rapidly expanding. In 2018, the market was worth $3.01 billion, according to Allied Market Research. This figure is predicted to rise to $24 billion by 2026, implying a...

We’re Hiring – Senior .NET Developer

JOB DESCRIPTION:Responsible for development, support, maintenance and implementation of a complex project module. You should have good experience in application of standard software development principles. Be able to work as an independent team member, capable of applying judgment to plan and execute your tasks. Be able to respond to technical...

We’re Hiring – Senior Nodejs Developer

Company DescriptionIf you are excited to help millions of people to elevate their standards of living and literally foster economic growth of the developing nations through providing accessible financial instruments, come and Join us! Your impact will be felt!We are looking for motivated talents, whose passion is Software Engineering and the ones...

Getting Started with Blazor

JavaScript frameworks are widely used in the development of web applications. Instead of using JavaScript frameworks, Microsoft released Blazor (Vue, Angular, React etc.). In this article, we'll learn more about Blazor.What is Blazor?Blazor is a new open-source and cross-platform framework developed by Microsoft's ASP.NET team for building interactive client-side UI....

JavaScript VS. TypeScript

JavaScript and TypeScript are two of the most popular programming languages today.While both of these programming languages are primarily used for web application development, TypeScript has recently gained traction as RxJS and Angular have begun to use it.So, should you switch your web app from JavaScript to TypeScript?This post will...

Calculate time taken by a function to be executed in Javascript

In this post I will show you how to calculate or measure the time that taken by a javascript function to be executed.As we know that Javascript console has to functions console.time() and console.timeEnd()console.time() - start the timerconsole.timeEnd() - Stops a timer that was previously started by calling console.time() and prints the...

Get geo location data using HTML5 & JavaScript

In case you are using Google Chrome you will have to enable getting location by the following steps:Open Google Chrome > on the top right click on the vertical 3 dots then select SettingsAt the bottom click Show advanced settingsIn the "Privacy" section, click Content settingsIn the dialog that appears,...

Show alert or run JavaScript function after showing the appointment popup in DevExpress using VB.NET

You should handle the CustomJSProperties event and add in properties collection the script which you are going to run it.Please find below server side code:Dim script As String = Nothing Dim disablePopup As Boolean = falseProtected Sub ASPxScheduler1_AppointmentFormShowing(sender As Object, e As AppointmentFormEventArgs) Handles ASPxScheduler1.AppointmentFormShowing...

Custom validator scrolls page to the top in ASP.NET

If we add a ValidationSummary control to the page, its ValidationSummaryOnSubmit function invokes “window.scrollTo(0,0)” when page is invalid. That’s why the page scrolls to the top.To workaround this issue, we can assign a function to window.scrollTo which do nothing, so that window.scrollTo(0,0) will not take effect. This workaround is appropriate...