Intranet Design – Content is King

Intranet owners must realize that users appreciate substance over flash. While the system might be great to look at, this can wear thin very quickly. Flash will result in an initial spike in system use, but the majority of these are going to be "one-night stands". If you want long term success, your intranet must have more than a pretty face.

Remove the comma from WebNumericEdit

 If you do not want to display the comma in the Infragistcs WebNumberic Edit control. //WebNumericEdit control will use a comma to seperate number groups //This will prevent 1234567 being displayed as 1,234,567  //Requires: using System.Globalization; NumberFormatInfo numInfo = new NumberFormatInfo(); numInfo.NumberGroupSeparator = ""; this.txt_Pfizer_id.NumberFormat = numInfo;

UltraWebGrid helper to find a column index based on the caption

In order to avoid WEAK typing ( i.e. e.Row.Cells[5] ) I have written a helper method to return the index of an Infragistics UltraWebGrid column based upon its caption text. This is probably best explained via an example: In this scenario a row in my SOLVENT search results has been clicked. I want to load … Continue reading UltraWebGrid helper to find a column index based on the caption

How to … Set up LLBLgen Databinding in Visual Studio

LLBLGen Pro ships with its own DataSource controls: LLBLGenProDataSource for selfservicing LLBLGenProDataSource2 for adapter. These also are located in the SD.LLBLGen.Pro.ORMSupportClasses dll for .NET 2.0 and you have to add them to the toolbox first. This can be done manually by right-clicking the toolbox when a webform is open in the editor (HTML or design … Continue reading How to … Set up LLBLgen Databinding in Visual Studio

How to customise the ‘EDIT IMAGE PROPERTIES’ in SharePoint 2007 to ensure accessibility

Situation: We need to ensure that the code produced by the Sharepoint ‘Edit Image’ control ensures that the code generated is XHTML 1.0 compliant and in line with W3C accessibility conditions. In particulare we need to ensure that an ALT text is provided and style controls are disabled. Complication: Standard sharePoint web parts contains Layout … Continue reading How to customise the ‘EDIT IMAGE PROPERTIES’ in SharePoint 2007 to ensure accessibility

Firebug – Great tool to debug CSS, Javascript, XHTML

The Firebug extension for firefox is a great extension which allows you to inspect the CSS, Javascript and XHTML of a web page. The tool is a very powerful addition for any front end development and debugging work. In particular the ability to inspect and highlight areas and their relevant CSS is very powerful. Live … Continue reading Firebug – Great tool to debug CSS, Javascript, XHTML

Sharepoint 2007 is not XHTML compliant or Accessible

Currently working in a role where I'm supporting the XHTML integration of static designs into Sharepoint 2007 via .Net user controls. The project aspires to produce XHTML 1.1 Strict compliant code that adheres to WCAG AAA accessibility guidelines. Unfortunatley the good folks at Microsoft have not co-operated and we are therefore working to overload, hack … Continue reading Sharepoint 2007 is not XHTML compliant or Accessible