Tag: HTML
WOPI based document editor for Office files
WOPI based document editor for Office files WOPI (Web Application Open Platform Interface) protocol is Microsoft’s platform to integrate Office Online within your application. To make use of Wopi, you would require to become a member of the Office 365
Drag and drop .url issue
Chromium-based browsers (chrome and edge) recently produced issues related to drag and drop hyperlink HTML elements. I had a list of file names in the grid in my application and file names were created as hyperlink (<a></a>) elements which were
Mvc c# : Exclude Enum values from DropDownListFor Html helper on .cshtml Page
Suppose we have some enum type in c# as follows : enum Performance { None=-1, Dissatisfied=0, Below Average=1, Average =2, Good = 3, Excellent=4, } Consider some employee model with a given enum type property. public class EmployeePerformance{ public int
XPath for Selenium Webdriver
XPath XPath in simple terms is a way of finding an element(s) in an HTML DOM by giving its path. It is useful when name or id etc is not available to be directly used to find the element. The
Clear HTML cache programmatically
How to clear HTML cache programmatically HTML automatic caching is one of the popular features provided in HTML5 which makes the application page loading faster as the same page is not freshly loaded every time from the server. An issue
How to create Bootstrap dropdowns in Bootstrap v4
Creating Bootstrap dropdowns in Bootstrap v4 Dropdowns are used to display lists of links, names etc. Bootstrap dropdowns can be toggled by clicking on it. 1.Create a file with .html extension. 2.Include bootstrap css and js version 4 CDN link
What is new in Bootstrap 4
Introduction to Bootstrap 4 and what is new in it Bootstrap 4 final stable version was released on January 18th, 2018. There are lots of new changes in this version. 1) FlexBox Support:- Earlier Bootstrap’s layout was powered by float-based
PHP script scheduling without cron jobs
PHP script scheduling without cron job Sometimes a website built in php needs to schedule a script on daily or hourly basis – for example, Reminder Emails, Newsletter emails or Database backups to be taken automatically. Normally, these types of
How to use Bootstrap pagination
How to use Bootstrap pagination Steps to use Bootstrap pagination: 1. Create a simple html file. 2. Include bootstrap css and js CDN link in html file. Example : <!doctype html> <html lang=”en”> <head> <!– Required meta tags –> <meta