|
|
|
อยากได้โค๊ด Fckeditor num character (แบบนับตัวอักษรในขณะที่พิมข้อความลงไปในช่อง Fckeditor) มีรูปตัวอย่างให้ชมครับ |
|
|
|
|
|
|
|
แล้วถ้าจะนำไปใส่ใน Fckeditor จะต้องเขียนโค๊ดอย่างไรครับ ช่วยหน่อยครับ ใส่ไม่ถูกจิงๆ
Code (PHP)
<?php require_once("FCKeditor/fckeditor.php"); ?>
<html>
<head>
<body>
<script language="javascript" src="FCKeditor/fckeditor.js"></script>
</head>
<script type="text/javascript">
var oFCKeditor = new FCKeditor('txtProfile');
oFCKeditor.BasePath = "FCKeditor/";
oFCKeditor.Width = "700";
oFCKeditor.Height = "200";
oFCKeditor.ToolbarSet = 'Default' ;
oFCKeditor.Create();
</script>
</body>
</html>
|
ประวัติการแก้ไข 2012-07-05 12:50:02 2012-07-05 12:51:12
|
|
|
|
Date :
2012-07-05 12:48:35 |
By :
nattkhanesha |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมดูจากตัวอย่าง
<textarea name="txtDetail" cols="40" rows="5" id="txtDetail" onKeyDown="return CheckCount()"></textarea>
แต่ถ้าเป็น Fckeditor จะต้องนำไปใส่ที่ไหนครับ งง ครับ ใส่ไม่ถูกจิงๆ
มีโค๊ดตัวอย่างของ Fckeditor ให้ดูหน่อยนะครับ
|
|
|
|
|
Date :
2012-07-06 07:48:57 |
By :
nattkhanesha |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คือ พี่วิน เค้าหมายถึง ให้เขียนแยกออกมาจาก FCKEditor น่ะครับ เขียนไว้ใกล้ๆ หรือหัวของเว็บก็ได้แล้วเรียก function เช็คอีกทีครับ
งงไหมครับ?
|
|
|
|
|
Date :
2012-07-06 10:51:23 |
By :
ALTELMA |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช่แบบนี้ป่าวครับ ผมลองดูแล้วใช้ไม่ได้ครับ ไม่เข้าใจ มือใหม่ครับ
Code (PHP)
<?php require_once("FCKeditor/fckeditor.php"); ?>
<html>
<head>
<title>ThaiCreate.Com Tutorial</title>
</head>
<body>
<script language="JavaScript">
function CheckCount()
{
var maxChar = 50;
if(document.frmMain.txtDetail.value.length > maxChar)
{
return false;
}
else
{
document.frmMain.txtCount.value = document.frmMain.txtDetail.value.length;
}
}
</script>
<body>
<form name="frmMain" method="post" onKeyDown="return CheckCount()">
<?php
$oFCKeditor = new FCKeditor('txtDetail') ;
$oFCKeditor->BasePath = "FCKeditor/";
$oFCKeditor->Width= "770";
$oFCKeditor->Height= "300" ;
$oFCKeditor->ToolbarSet ="Normal";
$oFCKeditor->Value ="" ; //
$oFCKeditor->Create() ;
?>
<br>
<input name="txtCount" type="text" id="txtCount" value="">
</form>
</body>
</html>
|
ประวัติการแก้ไข 2012-07-06 15:56:48 2012-07-06 15:59:15 2012-07-06 16:00:00 2012-07-06 16:02:00
|
|
|
|
Date :
2012-07-06 15:56:17 |
By :
nattkhanesha |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้วผมไปดูตัวอย่างจากเว็บนี้มาครับ Fckeditor textarea
ก็ยังทำไม่ได้อยู่ครับ ลองหาข้อมูลมาหลายวันแล้วครับ ช่วยหน่อยนะครับ
Code (PHP)
<html>
<head>
<title>FCKeditor - Sample</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="robots" content="noindex, nofollow">
<script type="text/javascript" src="fckeditor/fckeditor.js"></script>
<script type="text/javascript">
window.onload = function()
{
var oFCKeditor = new FCKeditor( 'MyTextarea' ) ;
oFCKeditor.BasePath = "/fckeditor/" ;
oFCKeditor.ReplaceTextarea() ;
}
</script>
</head>
<body>
<textarea id="MyTextarea" name="MyTextarea">This is <b>the</b> initial value.</textarea>
</body>
</html>
อ้างอิง : http://docs.cksource.com/FCKeditor_2.x/Developers_Guide/Integration/JavaScript
ลองนำโค๊ดมารวมกัน
Code (PHP)
<html>
<head>
<title></title>
<script type="text/javascript" src="Fckeditor/fckeditor.js"></script>
<script type="text/javascript">
window.onload = function()
{
var oFCKeditor = new FCKeditor( 'txtDetail' ) ;
oFCKeditor.BasePath = "Fckeditor/" ;
oFCKeditor.ReplaceTextarea() ;
}
</script>
</head>
<body>
<script language="JavaScript">
function CheckCount()
{
var maxChar = 50;
if(document.frmMain.txtDetail.value.length > maxChar)
{
return false;
}
else
{
document.frmMain.txtCount.value = document.frmMain.txtDetail.value.length;
}
}
</script>
<body>
<form name="frmMain" method="post">
<textarea name="txtDetail" cols="40" rows="5" id="txtDetail" onKeyDown="return CheckCount()"></textarea>
<br>
<input name="txtCount" type="text" id="txtCount" value="">
</form>
</body>
</html>
|
|
|
|
|
Date :
2012-07-09 11:08:16 |
By :
nattkhanesha |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|