Viewing entries in
SSW

Comment

SSRS - Find out which reports area being used (handy for migrating only the useful reports to a new server)

At SSW, we are currently migrating our SQL Server Reporting Services 2008 R2 reports to our new SQL Server Reporting Services 2016 server.

If you haven't decided to make the move to SSRS 2016 you should check out What's New in Reporting Services (SSRS). The main features we care about are:

  • Better Portal
  • Mobile Reports
  • PowerBI integration
  • Better HTML5 report rendering

Comment

KendoUI - Grid - Footer Template Formatting

1 Comment

KendoUI - Grid - Footer Template Formatting

Ran into an issue today whereby I was showing an aggregated Sum in the footer of a column. This worked correctly but the number was not formatted and showed 6 decimal places.

Looking through the KendoUI docs and forums yielded plenty of results, but this was all for client side binding and formatting.

1 Comment

Javascript Corner - Font Awesome

Comment

Javascript Corner - Font Awesome

I have been Font Awesome over the last year for all my web projects. It's goal is to do away with all the images that you need for a modern web application and replace them with a single font.

Why replace images with a font you may ask?

There are several advantages:

  • Fonts are scalable, so they look crisp at whatever size you want them
  • You can use all your font styles on these icons to style them (like size and colour)
  • All modern browsers support the download of custom fonts (there is a fallback to image sprites for old browsers)

Using it on your project is easy, just add the following stylesheet to your app:

<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">

Then you have access to over 350 icons. Here are a few that I use all the time: 

Comment