Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在jointJS中,我想在检查器文本字段中进行编辑以自动大写。
我是否必须更改 inspector.js 代码或在我的 main.js 代码中创建一个新 var 才能做到这一点?
在jointJS 文档中没有大写功能的参考。
这可能吗?
我以这种方式解决了我的问题(在我初始化检查器的代码中)使用:
cell.on('change: inspectorfieldname', function(cell, change, opt) { var test = cell.get('inspectorfieldname'); var upper= test.toUpperCase(); cell.set('inspectorfieldname', upper); })