本文整理汇总了TypeScript中common.Common.clearHtml方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Common.clearHtml方法的具体用法?TypeScript Common.clearHtml怎么用?TypeScript Common.clearHtml使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类common.Common
的用法示例。
在下文中一共展示了Common.clearHtml方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: executeIfTextUnchanged
executeIfTextUnchanged(expressionText, "searchText", 300, function() {
var searchCriteria = {
caseSensitive: isCheckboxSelected("inputCaseSensitive"),
regularExpression: isCheckboxSelected("inputRegularExpression"),
wholeWord: isCheckboxSelected("inputWholeWord")
};
var expressionPattern = null;
if(fileFilterPatterns) {
expressionPattern = $("#fileFilterPatterns").html();
expressionPattern = Common.clearHtml(expressionPattern);
}
if(expressionText) {
expressionText = Common.clearHtml(expressionText);
}
listFunction(expressionText, expressionPattern, searchCriteria, function(list, requestedText) {
var currentText = $("#searchText").html();
if(!requestedText || currentText == requestedText) {
var content = createDialogListTable(list);
if(content.content){
$("#dialog").html(content.content);
}else {
$("#dialog").html('');
}
// this is kind of crap, but we need to be sure the html is rendered before binding
if(content.init) {
setTimeout(content.init, 100); // register the init function to run
}
}
});
});
示例2: function
event.onComplete = function() {
var sel = grid.getSelection();
if (sel.length == 1) {
var record = grid.get(sel[0]);
var text = $("#dialogPath").html();
var expression = Common.clearHtml(text);
VariableManager.toggleExpandEvaluation(record.path, expression);
}
grid.selectNone();
grid.refresh();
}