From: SourceForge.net <no...@so...> - 2009-07-07 10:08:38
|
Patches item #2817899, was opened at 2009-07-07 09:41 Message generated for change (Tracker Item Submitted) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=782466&aid=2817899&group_id=151897 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Fix for Mono Initial Comment: To allow Anthem to be 100% functional under mono, you have to add a single line in Manager.cs, in the AddCallBacks method concerning ASP.CheckBoxList (line number 1354): ... ASP.CheckBox controlToRepeat = (ASP.CheckBox)((ASP.CheckBoxList)child).Controls[0]; controlToRepeat.AutoPostBack = false; //MONO FIX ((ASP.CheckBoxList)child).AutoPostBack=false; ... This is because the way mono set autopostback for CheckBoxList is not the same than native ASP.net When done, works perfectly under Mono 2.4.2 ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=782466&aid=2817899&group_id=151897 |