- Partial bug fix: enhancement to support extkey widgets (autocomplete) in nested search forms... still not completely fixed, bug showing some progress.

SVN:trunk[1203]
This commit is contained in:
Denis Flaven
2011-04-11 12:11:57 +00:00
parent af20723c8c
commit 6d34c2aa93
3 changed files with 9 additions and 2 deletions

View File

@@ -173,6 +173,12 @@ EOF
echo implode("\n", $this->a_scripts);
echo "\n</script>\n";
}
if (!empty($this->s_deferred_content))
{
echo "<script type=\"text/javascript\">\n";
echo "\$('body').append('".$this->s_deferred_content."');\n";
echo "\n</script>\n";
}
if (!empty($this->m_sReadyScript))
{
echo "<script type=\"text/javascript\">\n";

View File

@@ -805,7 +805,8 @@ EOF
{
echo "<div id=\"rawOutput\" title=\"Debug Output\"><div style=\"height:500px; overflow-y:auto;\">$s_captured_output</div></div>\n";
}
echo $this->s_deferred_content;
echo "<div id=\"at_the_end\">".$this->s_deferred_content."</div>";
// echo $this->s_deferred_content;
echo "<div style=\"display:none\" title=\"ex2\" id=\"ex2\">Please wait...</div>\n"; // jqModal Window
echo "<div style=\"display:none\" title=\"dialog\" id=\"ModalDlg\"></div>";
echo "<div style=\"display:none\" id=\"ajax_content\"></div>";

View File

@@ -339,7 +339,7 @@ class WebPage
{
echo "<div class=\"raw_output\">$s_captured_output</div>\n";
}
echo $this->s_deferred_content;
echo '<div id="at_the_end">'.$this->s_deferred_content.'</div>';
echo "</body>\n";
echo "</html>\n";
}