グリッド編集可能なポップアップのhtmlテンプレートをアングルアプリにロードしようとしています。私は、グリッド内でこのkendo ui gridリモートテンプレートから編集可能なポップアップ
<script>
var templateLoader = (function($,host){
//Loads external templates from path and injects in to page DOM
return{
loadExtTemplate: function(path){
var tmplLoader = $.get(path)
.success(function(result){
//Add templates to DOM
$("body").append(result);
})
.error(function(result){
alert("Error Loading Templates -- TODO: Better Error Handling");
});
tmplLoader.complete(function(){
$(host).trigger("TEMPLATE_LOADED", [path]);
});
}
};
})(jQuery, document);
/*
** Load the template file
*/
templateLoader.loadExtTemplate("tpl/Maintenance/policyProp.htm");
/*
** Loading external templates with in this function.
*/
</script>
を追加したHTMLページ内の
:
editable: {
confirmation: true,
mode: "popup",
template: kendo.template($("#Policy_editor").html())
},
HTMページ:
<script type="text/x-kendo-template" id="Policy_editor" >
html code here
.
.
.
.
</script>
私は "#Policy_editorは" anから来てほしいです外部のHTMLページ。 ご協力いただきありがとうございます!
ありがとうございました!あなたは私に多くの助けをしました:) – user2095120
@ user2095120それは動作しますか? – DontVoteMeDown