Archive

Author Archive

IE7/8 and hover on empty elements

November 17th, 2009 fbis No comments

I had an annoying problem with IE8 today. In the CMS, toolbars appear when you hover over a content block or the page content. All I’ve done is user div:hover.

IE though does not recognise the object if its background is set to transparent and is empty. If you set a background colour then it fires the hover. I tried giving it hasLayout but that made no difference! Very strange behaviour!

Read more…

Categories: css Tags:

Get Rendered Html From a Control

November 16th, 2009 fbis No comments

Whilst working on the CMS I needed to be able to pass back the html a control will render when the user first adds it. The control doesn’t exist on the page yet as the sections are added via javascript. It was very easy to pass in StringWriter to the render function to get the html :)

Read more…

Categories: Asp.Net, c#, cms Tags:

Javascript dictionary & getIds

October 11th, 2009 fbis No comments

Coming from a .net background I must admit to missing many of the features that the framework provides like Hastables, Dictionaries and Lists. I've just come up with a really simple dictionary class that I use to hold results from my id parsing routine.

Read more...
Categories: JQuery, Javascript Tags: , ,

jQuery fbisCalendar

September 18th, 2009 fbis 2 comments

Here is my first freely available jQuery plug-in.  There are a few more to follow soon including a form builder and a file explorer ;)

Overview

I know there are a million calendar selectors out there but I needed one that covered historical dates (1800-2100).  It displays either as a in place calendar in the page or as a drop down aka. combo box style.

Read more…

Categories: JQuery Tags: ,

CMS Framework – Update

August 16th, 2009 fbis No comments

Been a bit quiet round here lately but not because I’ve not been working on it ;) I’ve been using it for a project at work and converting a lot of my stuff to be compatible with it.  It’s running  a site atm and doing well.

Alpha State

Mainly in alpha because things may yet change but the following all work
Read more…

Categories: .net, Asp.Net, c#, cms Tags:

Simple Asp.net StringBuilder Literal Control

August 13th, 2009 fbis No comments

It always annoys me that Literal controls only have a text property. This means you have to do:

Literal.Text += "Add me";

Whereas a StringBuilder would make much more sense when building lists etc. Heres a stupidly simple control that just supplies a string builder as the text property. Not exactly a good code example(shouldn’t override the text property etc)  but ideal for this situation. I will write a proper control later ;) Read more…

Categories: Asp.Net Tags: