Monday, April 1, 2013

AddThis reload on ajax load

run the code on ajax load, or put it on the end of file that is loaded


var addthis_url = "http://s7.addthis.com/js/250/addthis_widget.js#pubid=your_id";
if (window.addthis) {
    window.addthis = null;
    window._adr = null;
    window._atc = null;
    window._atd = null;
    window._ate = null;
    window._atr = null;
    window._atw = null
}
$.getScript(adthis_url)



From:
http://railsforum.com/viewtopic.php?id=50604

Wednesday, January 30, 2013

Change app behaviour when debug="true" on web.config


To check if debug="true" on web.config, check the following:

HttpContext.Current.IsDebuggingEnabled

Why should I care?

Take the example
try{
//a lot of code that makes something
}catch (Exception ex){
//Make the error handling of some sort, like log the error...
if(HttpContext.Current.IsDebuggingEnabled){
return ex.Message;
}else{
return "A error ocurred with the app, please retry again later or contact our it department";
}
}


Wednesday, January 23, 2013

Full intelisense mvc umbraco 6

From  @ twitter
Tip for   developers, when editing MVC Views in add " Umbraco.Web;" to top of cshtml for full Intellisense

Tuesday, January 8, 2013

Thursday, January 3, 2013

Url Picker uComponents

uComponents.DataTypes.UrlPicker.Dto.UrlPickerState picker = uComponents.DataTypes.UrlPicker.Dto.UrlPickerState.Deserialize(curr.GetProperty<string>("propAlias"));


string target = picker.NewWindow ? "_blank" : "_self";
string text = picker.Title;
string url = picker.Url;

Monday, November 19, 2012

Change textstring to multiple text string or richtexteditor

Just copy the data in dataNvarchar to dataNText (or vice-versa) in the table cmsPropertyData with the right  propertytypeid to have the content on the property in umbraco.

Force Republish umbraco

http://siteUrl/Umbraco/dialogs/republish.aspx?xml=true

Source:
http://our.umbraco.org/wiki/reference/api-cheatsheet/publishing-and-republishing