我有一个FLFEXTAREA字段, 它在自己观察时正常运行, 但是当它通过jQuery获取( ) 方法装入时, 控制器就不会出现 。
ie The cftextarea is on a product detail pane. ON the left side of the page is a list of products to edit. clicking on one on the
the content is loading in, but the toolbar does not appear. hitting the page on its own, the toolbar shows.
这里是jquery( 工作精细)
$("#productList li").click(function(event) {
$.get(
editProduct.cfm ,
{id:$(this).attr( id )},
function (response) {
$( #productDetail ).html(response);
}
);
});
这是FLFSTEXTAREA呼叫:(未通过jquery/jax装入时, 工作正常)
<cftextarea enabled="yes" name="nutrition" rows="5" cols="25" richText="yes" toolbar="Basic" html="yes" >#DESCRIPTION# </cftextarea>
It d be nice to be able to use cftextarea on forms loaded in via ajax. is it possble?