Как получить текстовые данные из диалогового окна jquery.ui?Я выделил вызов, который не работает, и включил все ссылки на сценарии, чтобы показать, что я использую.Хотя текстовая запись в диалоговом окне работает, она не переходит к форме, которая ее содержит.Как вы видите, я попытался скопировать его в поле за пределами диалогового окна, и это не работает.Что я действительно хочу сделать, это опубликовать его на странице действий, как и другие данные в форме.
Вот URL: http://dev.bizzocall.com/cp-BizzoActiveButtonSIMPLE.php
КОД:
<?php require_once('Connections/bizCon.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
mysql_select_db($database_bizCon, $bizCon);
$query_buttonPrefsSet = "SELECT buttonprefs.iduserid, buttonprefs.btop, buttonprefs.bleft, buttonprefs.bcolor, buttonprefs.blabel, buttonprefs.newvisitors, buttonprefs.bdelay, buttonprefs.brepeats, buttonprefs.btype, buttonprefs.bphonetarget FROM buttonprefs ORDER BY buttonprefs.iduserid DESC LIMIT 1";
$buttonPrefsSet = mysql_query($query_buttonPrefsSet, $bizCon) or die(mysql_error());
$row_buttonPrefsSet = mysql_fetch_assoc($buttonPrefsSet);
$totalRows_buttonPrefsSet = mysql_num_rows($buttonPrefsSet);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<title>Bizzo Control Panel</title>
<link href="css/plan.css" rel="stylesheet" type="text/css"/>
<link rel="stylesheet" href="css/BizzocallPopup.css" type="text/css"/>
<link href="css/cpanel.css" rel="stylesheet" type="text/css"/>
<link href="css/BizzocallPopup.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="js/jquery-1.6.2.min.js"></script>
<script src="Draggable/development-bundle/ui/jquery.ui.core.js"></script>
<script src="Draggable/development-bundle/ui/jquery.ui.widget.js"></script>
<script src="Draggable/development-bundle/ui/jquery.ui.mouse.js"></script>
<script src="Draggable/development-bundle/ui/jquery.ui.draggable.js"></script>
<link type="text/css" href="css/jquery-ui-1.8.16.custom.css" rel="stylesheet" />
<script type="text/javascript" src="/js/jquery-ui-1.8.16.custom.min.js"></script>
<script type="text/javascript">
$(function(){
// Dialog
$('#labelStgdialog').dialog({
autoOpen: false,
width: 400,
buttons: {
"OK": function() {
$(this).dialog("close");
}
}
});
// Dialog Link
$('#labelSetgbtn').click(function(){
$('#labelStgdialog').dialog('open');
return false;
});
});
$('#enterlabel').change(function() {
$("input#blabel").val($("input#enterlabel;").val());
});
</script>
</head>
<body>
<div class="contentWrapper">
<form action="cp-BizzoEmbedCodeSIMPLE.php" method="post" enctype="multipart/form-data" name="buttonprefform" target="_top">
<div id="labelSetgbtn" class="button gray LabelSettings"><a href="#">LABEL SETTINGS</a></div>
<div id="labelStgdialog" class="DialogBox">
<div class="boldtxt">ENTER YOUR CUSTOM LABEL</div>
<div class="labeltxtblack">CALL </div>
<input name="enterlabel" type="text" id="enterlabel" class="enterlabel" value=" > 10 char " maxlength="9" length="10"/>
<div class="clearer"></div>
<div class="space10"></div>
<div class="bcpopuptop">
<div class="bcsquare">
<div class="innersquare"></div>
</div>
<div class="btnlabeltxt">CALL NOW</div>
</div>
</div>
<input id="blabel" name="blabel" type="text" value="<?php echo strtoupper($row_buttonPrefsSet['blabel']); ?>" />
<button name="mysubmitbutton" id="mysubmitbutton" type="submit" class="createbizzobutton"> </button>
</form>
</div>
<!--END contentwrapper-->
</body>
</html>