↧
From: | Tore Bleken |
To: | Tore Bleken |
<script type="text/javascript">function attachErrorLink(id) {var el = $("#" + id);if (el.length < 1) return;if(typeof(OnBindingErrorLink)!='undefined') OnBindingErrorLink(el.get(0)); el.focus().addClass("errorhighlight") setTimeout(function() { el.removeClass("errorhighlight"); },4000) }
<ww:wwWebLiteral ID="WwWebLiteral1" runat="server"Visible="false"><!-- these are here for Intellisense support only. Do not use these for embedding scripts! --> <script src="~/scripts/jquery.js"type="text/javascript"></script><script src="~/scripts/ww.jquery.js"type="text/javascript"></script></ww:wwWebLiteral>
It's part of the validation routines. It comes from BindingErrorCollection.ToHtml() and can be found in WebControl.prg.
This should only be added automatically if there is in fact an error that occurs.
+++ Rick ---
I am watching your old WC videos, while trying out for myself. Half way into video no. 3, in EditDeveloper, your error routine for missing or wrong data, calls a javascript function called attachErrorLink, however I can't find this function in any of the files which are shipped with wc5.64. This is from the created html when I leave txtName blank:
<td><span style="font-weight:Normal">Please correct the following</span><hr><ul><li><a href="javascript:;" onclick="attachErrorLink('txtName')">Name cannot be left empty</a></li>