Web Connection
Minor Omission - Failing to close [<nav id=]
Gravatar is a globally recognized avatar based on your email address. Minor Omission - Failing to close [<nav id=]
  Marty
  All
  Mar 31, 2020 @ 07:23am
FUNCTION HtmlPager(lcId,lnPage,lnTotalPages,lnMaxButtons,lcBaseUrl,lcQueryName)
LOCAL lcOutput, lnStartPage, lnEndPage, lnPagerPages, lcLink, lnX, lcPageLink

lcOutput = ;
	[<nav id="] + lcId + ["] + CRLF + ;
	[<ul  class="pagination">] + CRLF 


<nav id="_CtrlPager"
<ul  class="pagination">
<li class="page-item"><a class="page-link" href="Page=1">1</a></li> </ul>
</nav>

Gravatar is a globally recognized avatar based on your email address. re: Minor Omission - Failing to close [<nav id=]
  Tore Bleken
  Marty
  Mar 31, 2020 @ 07:30am

I suspect that you have an old version? This is the last line in the HtmlPager function.

RETURN  lcOutput + "</ul>" + CRLF + "</nav>" + CRLF
Gravatar is a globally recognized avatar based on your email address. re: Minor Omission - Failing to close [<nav id=]
  Marty
  Tore Bleken
  Mar 31, 2020 @ 07:43am
[<nav id="] + lcId + ["] + CRLF + ;
*should be
[<nav id="] + lcId + [">] + CRLF + ;

Gravatar is a globally recognized avatar based on your email address. re: Minor Omission - Failing to close [<nav id=]
  Tore Bleken
  Marty
  Mar 31, 2020 @ 07:51am

Ah, I see. Until Rick fixes this, I suggest that you fix it yourself in wwhtmlhelpers.prg. (I suspect that this is a part of some discontinued parts, but I am not absolutely sure.)

Gravatar is a globally recognized avatar based on your email address. re: Minor Omission - Failing to close [<nav id=]
  Rick Strahl
  Marty
  Mar 31, 2020 @ 01:12pm

Fixed thank you.

© 1996-2024