The expandable textarea feature that has been introduced in firefox can be disabled with the following CSS code:
textarea {resize:none}
Marc Love Web Developer/Designer based in Glasgow, Scotland
The expandable textarea feature that has been introduced in firefox can be disabled with the following CSS code:
textarea {resize:none}
Came across this issue today for a LinkButton I was using inside a repeater control which was inside an UpdatePanel. It turns out that a LinkButton does not automatically cause partial page rendering in this situation. To solve this issue you need to register the LinkButton inside the Repeater for Asynchronous Postback.
rptSearchList.DataSource = loPagedDataSource;
rptSearchList.DataBind();
//Initialize link button for ajax
foreach (RepeaterItem loItem in rptSearchList.Items){
if (loItem.ItemType == ListItemType.Item || loItem.ItemType == ListItemType.AlternatingItem){
LinkButton lbFavourites = (LinkButton)loItem.FindControl("lbFavourites");
ScriptManager ScriptManager1 = (ScriptManager)FindControlRecursive(this.Page, "ScriptManager1");
ScriptManager1.RegisterAsyncPostBackControl(lbFavourites);
}
}
The above code first finds the LinkButton based on its ID within the repeater control. In my example I have added one further step as my Repeater was part of a UserControl sitting within a MasterPage. The MasterPage held the ScriptManager so I used a method for finding the ScriptManager from the user control. The below code is a useful method I used to find the ScriptManager.
public static Control FindControlRecursive(Control controlToStartFrom, string ctrlIdToFind){
Control found = controlToStartFrom.FindControl(ctrlIdToFind);
if (found != null)
return found;
foreach (Control innerCtrl in controlToStartFrom.Controls){
found = FindControlRecursive(innerCtrl, ctrlIdToFind);
if (found != null)
return found;
}
return null;
}
Its been another busy month with website launches for the new Traverse Theatre website and Cafe Gandolfi redesign. Both websites were implemented using the Umbraco CMS. Check out my portfolio section for more info on these projects.
Welcome to my portfolio website. My name is Marc Love and I am a Web Developer based in Glasgow, Scotland.
I have worked for some of the top digital agencies in Glasgow during my career and have recently started up my own digital agency, madebycrunch with my web designer colleague Paul Daly. Our aim is to design and develop cutting edge websites that make a significant difference to the success of your business.
We are currently working on a range of different projects that you will be able to see very soon on the new madebycrunch website.
This site contains a selection of the projects I have worked on throughout my career.
Feel free to visit my Blog or take a closer look at my Portfolio.
If you are looking for freelance web developer or web designer services please get in touch via my contact page or the info below.
Tel: 0141 275 4848
Mob: 07795 417 980
marc[at]madebycrunch[dot]com
St Georges Buildings
5 St Vincent Place
Glasgow, G1 2DH