From: SourceForge.net <no...@so...> - 2009-03-27 10:03:43
|
Bugs item #2716658, was opened at 2009-03-27 10:03 Message generated for change (Tracker Item Submitted) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=782464&aid=2716658&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: Compatibility with ie8 Initial Comment: In order to make Anthem.net working with IE8 and with an <anthem:Timer>, the aspx page must have an <asp:button> and an <asp:CustomValidator> ! An other way is to add the following line after the <form> balise: <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" /> Bug javascript at the line: form[name] = input; //with name = "__EVENTTARGET" ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=782464&aid=2716658&group_id=151897 |
From: SourceForge.net <no...@so...> - 2009-06-06 08:42:38
|
Bugs item #2716658, was opened at 2009-03-27 10:03 Message generated for change (Comment added) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=782464&aid=2716658&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: Compatibility with ie8 Initial Comment: In order to make Anthem.net working with IE8 and with an <anthem:Timer>, the aspx page must have an <asp:button> and an <asp:CustomValidator> ! An other way is to add the following line after the <form> balise: <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" /> Bug javascript at the line: form[name] = input; //with name = "__EVENTTARGET" ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2009-06-06 08:42 Message: This error occurs on image button too in IE8. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=782464&aid=2716658&group_id=151897 |
From: SourceForge.net <no...@so...> - 2009-06-06 09:10:19
|
Bugs item #2716658, was opened at 2009-03-27 10:03 Message generated for change (Comment added) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=782464&aid=2716658&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: Compatibility with ie8 Initial Comment: In order to make Anthem.net working with IE8 and with an <anthem:Timer>, the aspx page must have an <asp:button> and an <asp:CustomValidator> ! An other way is to add the following line after the <form> balise: <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" /> Bug javascript at the line: form[name] = input; //with name = "__EVENTTARGET" ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2009-06-06 09:10 Message: function Anthem_SetHiddenInputValue(form, name, value) { var input = null; if (form[name]) { input = form[name]; } else { input = document.createElement("input"); input.setAttribute("name", name); input.setAttribute("type", "hidden"); } input.setAttribute("value", value); var parentElement = input.parentElement ? input.parentElement : input.parentNode; if (parentElement == null) { form.appendChild(input); form[name] = input; ///////////////////////////////////error occurs here for image button: Object doesn't support this property or method } } ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2009-06-06 08:42 Message: This error occurs on image button too in IE8. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=782464&aid=2716658&group_id=151897 |
From: SourceForge.net <no...@so...> - 2009-06-28 20:02:37
|
Bugs item #2716658, was opened at 2009-03-27 10:03 Message generated for change (Comment added) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=782464&aid=2716658&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: Compatibility with ie8 Initial Comment: In order to make Anthem.net working with IE8 and with an <anthem:Timer>, the aspx page must have an <asp:button> and an <asp:CustomValidator> ! An other way is to add the following line after the <form> balise: <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" /> Bug javascript at the line: form[name] = input; //with name = "__EVENTTARGET" ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2009-06-28 18:27 Message: change your anthem.js to function Anthem_SetHiddenInputValue(form, name, value) { var input = null; if (form[name]) { input = form[name]; } else { input = document.createElement("input"); input.setAttribute("name", name); input.setAttribute("type", "hidden"); } input.setAttribute("value", value); var parentElement = input.parentElement ? input.parentElement : input.parentNode; if (parentElement == null) { //IE7 try { form.appendChild(input); form[name] = input; } catch (e) { } } } function Anthem_RemoveHiddenInput(form, name) { var input = form[name]; if (input != null && typeof (input) != "undefined") { var parentElement = input.parentElement ? input.parentElement : input.parentNode; if (parentElement != null) { //IE7 try { form[name] = null; parentElement.removeChild(input); } catch (e) { } } } } ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2009-06-06 09:10 Message: function Anthem_SetHiddenInputValue(form, name, value) { var input = null; if (form[name]) { input = form[name]; } else { input = document.createElement("input"); input.setAttribute("name", name); input.setAttribute("type", "hidden"); } input.setAttribute("value", value); var parentElement = input.parentElement ? input.parentElement : input.parentNode; if (parentElement == null) { form.appendChild(input); form[name] = input; ///////////////////////////////////error occurs here for image button: Object doesn't support this property or method } } ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2009-06-06 08:42 Message: This error occurs on image button too in IE8. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=782464&aid=2716658&group_id=151897 |
From: SourceForge.net <no...@so...> - 2009-06-28 20:11:18
|
Bugs item #2716658, was opened at 2009-03-27 10:03 Message generated for change (Comment added) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=782464&aid=2716658&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: Compatibility with ie8 Initial Comment: In order to make Anthem.net working with IE8 and with an <anthem:Timer>, the aspx page must have an <asp:button> and an <asp:CustomValidator> ! An other way is to add the following line after the <form> balise: <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" /> Bug javascript at the line: form[name] = input; //with name = "__EVENTTARGET" ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2009-06-28 20:11 Message: This was fixed in the source code about 3 months ago, http://anthem-dot-net.cvs.sourceforge.net/viewvc/anthem-dot-net/anthem/Anthem/Anthem.js?view=log ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2009-06-28 18:27 Message: change your anthem.js to function Anthem_SetHiddenInputValue(form, name, value) { var input = null; if (form[name]) { input = form[name]; } else { input = document.createElement("input"); input.setAttribute("name", name); input.setAttribute("type", "hidden"); } input.setAttribute("value", value); var parentElement = input.parentElement ? input.parentElement : input.parentNode; if (parentElement == null) { //IE7 try { form.appendChild(input); form[name] = input; } catch (e) { } } } function Anthem_RemoveHiddenInput(form, name) { var input = form[name]; if (input != null && typeof (input) != "undefined") { var parentElement = input.parentElement ? input.parentElement : input.parentNode; if (parentElement != null) { //IE7 try { form[name] = null; parentElement.removeChild(input); } catch (e) { } } } } ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2009-06-06 09:10 Message: function Anthem_SetHiddenInputValue(form, name, value) { var input = null; if (form[name]) { input = form[name]; } else { input = document.createElement("input"); input.setAttribute("name", name); input.setAttribute("type", "hidden"); } input.setAttribute("value", value); var parentElement = input.parentElement ? input.parentElement : input.parentNode; if (parentElement == null) { form.appendChild(input); form[name] = input; ///////////////////////////////////error occurs here for image button: Object doesn't support this property or method } } ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2009-06-06 08:42 Message: This error occurs on image button too in IE8. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=782464&aid=2716658&group_id=151897 |
From: SourceForge.net <no...@so...> - 2009-08-15 23:47:12
|
Bugs item #2716658, was opened at 2009-03-27 10:03 Message generated for change (Comment added) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=782464&aid=2716658&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: Compatibility with ie8 Initial Comment: In order to make Anthem.net working with IE8 and with an <anthem:Timer>, the aspx page must have an <asp:button> and an <asp:CustomValidator> ! An other way is to add the following line after the <form> balise: <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" /> Bug javascript at the line: form[name] = input; //with name = "__EVENTTARGET" ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2009-08-15 23:47 Message: nobody, thanks for the advice. I think, we should try to find out how to avoid the try/catch statement and see what happen with the form[name] thing... Best ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2009-06-28 20:11 Message: This was fixed in the source code about 3 months ago, http://anthem-dot-net.cvs.sourceforge.net/viewvc/anthem-dot-net/anthem/Anthem/Anthem.js?view=log ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2009-06-28 18:27 Message: change your anthem.js to function Anthem_SetHiddenInputValue(form, name, value) { var input = null; if (form[name]) { input = form[name]; } else { input = document.createElement("input"); input.setAttribute("name", name); input.setAttribute("type", "hidden"); } input.setAttribute("value", value); var parentElement = input.parentElement ? input.parentElement : input.parentNode; if (parentElement == null) { //IE7 try { form.appendChild(input); form[name] = input; } catch (e) { } } } function Anthem_RemoveHiddenInput(form, name) { var input = form[name]; if (input != null && typeof (input) != "undefined") { var parentElement = input.parentElement ? input.parentElement : input.parentNode; if (parentElement != null) { //IE7 try { form[name] = null; parentElement.removeChild(input); } catch (e) { } } } } ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2009-06-06 09:10 Message: function Anthem_SetHiddenInputValue(form, name, value) { var input = null; if (form[name]) { input = form[name]; } else { input = document.createElement("input"); input.setAttribute("name", name); input.setAttribute("type", "hidden"); } input.setAttribute("value", value); var parentElement = input.parentElement ? input.parentElement : input.parentNode; if (parentElement == null) { form.appendChild(input); form[name] = input; ///////////////////////////////////error occurs here for image button: Object doesn't support this property or method } } ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2009-06-06 08:42 Message: This error occurs on image button too in IE8. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=782464&aid=2716658&group_id=151897 |
From: SourceForge.net <no...@so...> - 2009-08-29 02:53:22
|
Bugs item #2716658, was opened at 2009-03-27 10:03 Message generated for change (Comment added) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=782464&aid=2716658&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: Compatibility with ie8 Initial Comment: In order to make Anthem.net working with IE8 and with an <anthem:Timer>, the aspx page must have an <asp:button> and an <asp:CustomValidator> ! An other way is to add the following line after the <form> balise: <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" /> Bug javascript at the line: form[name] = input; //with name = "__EVENTTARGET" ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2009-08-29 02:53 Message: Thank u so much for the snippet it works great cheers ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2009-08-15 23:47 Message: nobody, thanks for the advice. I think, we should try to find out how to avoid the try/catch statement and see what happen with the form[name] thing... Best ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2009-06-28 20:11 Message: This was fixed in the source code about 3 months ago, http://anthem-dot-net.cvs.sourceforge.net/viewvc/anthem-dot-net/anthem/Anthem/Anthem.js?view=log ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2009-06-28 18:27 Message: change your anthem.js to function Anthem_SetHiddenInputValue(form, name, value) { var input = null; if (form[name]) { input = form[name]; } else { input = document.createElement("input"); input.setAttribute("name", name); input.setAttribute("type", "hidden"); } input.setAttribute("value", value); var parentElement = input.parentElement ? input.parentElement : input.parentNode; if (parentElement == null) { //IE7 try { form.appendChild(input); form[name] = input; } catch (e) { } } } function Anthem_RemoveHiddenInput(form, name) { var input = form[name]; if (input != null && typeof (input) != "undefined") { var parentElement = input.parentElement ? input.parentElement : input.parentNode; if (parentElement != null) { //IE7 try { form[name] = null; parentElement.removeChild(input); } catch (e) { } } } } ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2009-06-06 09:10 Message: function Anthem_SetHiddenInputValue(form, name, value) { var input = null; if (form[name]) { input = form[name]; } else { input = document.createElement("input"); input.setAttribute("name", name); input.setAttribute("type", "hidden"); } input.setAttribute("value", value); var parentElement = input.parentElement ? input.parentElement : input.parentNode; if (parentElement == null) { form.appendChild(input); form[name] = input; ///////////////////////////////////error occurs here for image button: Object doesn't support this property or method } } ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2009-06-06 08:42 Message: This error occurs on image button too in IE8. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=782464&aid=2716658&group_id=151897 |
From: SourceForge.net <no...@so...> - 2010-06-09 03:41:44
|
Bugs item #2716658, was opened at 2009-03-27 10:03 Message generated for change (Comment added) made by afm_44 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=782464&aid=2716658&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: Closed >Resolution: Duplicate Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Compatibility with ie8 Initial Comment: In order to make Anthem.net working with IE8 and with an <anthem:Timer>, the aspx page must have an <asp:button> and an <asp:CustomValidator> ! An other way is to add the following line after the <form> balise: <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" /> Bug javascript at the line: form[name] = input; //with name = "__EVENTTARGET" ---------------------------------------------------------------------- >Comment By: Andy Miller (afm_44) Date: 2010-06-09 03:41 Message: Fixed in source code. ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2009-08-29 02:53 Message: Thank u so much for the snippet it works great cheers ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2009-08-15 23:47 Message: nobody, thanks for the advice. I think, we should try to find out how to avoid the try/catch statement and see what happen with the form[name] thing... Best ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2009-06-28 20:11 Message: This was fixed in the source code about 3 months ago, http://anthem-dot-net.cvs.sourceforge.net/viewvc/anthem-dot-net/anthem/Anthem/Anthem.js?view=log ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2009-06-28 18:27 Message: change your anthem.js to function Anthem_SetHiddenInputValue(form, name, value) { var input = null; if (form[name]) { input = form[name]; } else { input = document.createElement("input"); input.setAttribute("name", name); input.setAttribute("type", "hidden"); } input.setAttribute("value", value); var parentElement = input.parentElement ? input.parentElement : input.parentNode; if (parentElement == null) { //IE7 try { form.appendChild(input); form[name] = input; } catch (e) { } } } function Anthem_RemoveHiddenInput(form, name) { var input = form[name]; if (input != null && typeof (input) != "undefined") { var parentElement = input.parentElement ? input.parentElement : input.parentNode; if (parentElement != null) { //IE7 try { form[name] = null; parentElement.removeChild(input); } catch (e) { } } } } ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2009-06-06 09:10 Message: function Anthem_SetHiddenInputValue(form, name, value) { var input = null; if (form[name]) { input = form[name]; } else { input = document.createElement("input"); input.setAttribute("name", name); input.setAttribute("type", "hidden"); } input.setAttribute("value", value); var parentElement = input.parentElement ? input.parentElement : input.parentNode; if (parentElement == null) { form.appendChild(input); form[name] = input; ///////////////////////////////////error occurs here for image button: Object doesn't support this property or method } } ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2009-06-06 08:42 Message: This error occurs on image button too in IE8. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=782464&aid=2716658&group_id=151897 |