如何獲取GoJS中可編輯TextBlock的文本?如何獲取GoJS中可編輯TextBlock的文本?
-1
A
回答
0
我不確定你在問什麼。你的問題的文字回答是,你可以從TextBlock得到它的TextBlock.text屬性值的文本字符串。
但是您提到TextBlock是可編輯的,因此您可能在編輯期間詢問如何獲取TextBlock.text的前一個值。
首先,給驗證謂詞賦予原始字符串以及新建議的字符串:TextBlock.textValidation和TextEditingTool.textValidation屬性和TextEditingTool.isValidText方法。
二, 「TextEdited」 DiagramEvent獲取原始字符串值作爲DiagramEvent.parameter:DiagramEvent
0
添加到您的圖表的nodeTemplate。這有助於。
$(go.TextBlock,{ 編輯:真 })
myDiagram.nodeTemplate =
$(go.Node, "Horizontal", {
isTreeExpanded: false,
click: showDetail
},
$(go.Panel, "Auto",
$(go.Shape, "RoundedRectangle", {
fill: "#cce6ff", // the default fill, if there is no data-binding
stroke: "#6699ff",
height: 40,
strokeWidth: 2,
portId: "",
cursor: "pointer", // the Shape is the port, not the whole Node
}, new go.Binding("fill", "fill")),
$(go.TextBlock, {
editable: true
},
new go.Binding("text", "text"))
),
$("TreeExpanderButton", { alignment: go.Spot.Bottom, alignmentFocus: go.Spot.Top }, { visible: true })
);
相關問題
- 1. WPF TextBlock獲取線後文本編輯
- 2. TVirtualStringTree:如何獲取編輯的文本?
- 3. 如何從可編輯ComboBox上的文本中獲取事件?
- 4. 如何在列表視圖中獲取可編輯的編輯文本
- 5. 如何獲取TextBlock的文本(TextBlock是Button的內容)
- 6. 如何在編輯Gojs中滾動表格中的任何文本時獲取行值?
- 7. 從Xcode的文本中獲取可編輯的文本
- 8. 從編輯文本中獲取文本
- 9. 如何獲取內容可編輯div的新文本?
- 10. 獲取編輯文本值
- 11. 如何從文本中獲取整個文本編輯QT
- 12. GoJS從TextBlock獲取父節點點擊處理程序
- 13. 如何在Windows Phone中編輯TextBlock
- 14. 如何從代碼隱藏的DataTemplate中的TextBlock獲取文本
- 15. GridView如何從編輯中的文本框中獲取值MDOE
- 16. 如何從編輯器外部獲取編輯器中的選定文本?
- 17. 如何編輯並從文本文件中獲取數據?
- 18. 如何從Eclipse中的活動編輯器獲取文本PDE
- 19. 如何從引導可編輯插件獲得可編輯文本值
- 20. 如何在jQuery中編輯文本輸入樣式可編輯
- 21. 如何在iPhone設置顯示中獲取不可編輯的文本顯示
- 22. 如何獲取要粘貼到我的HTML文本編輯器中的文本?
- 23. 如何從Ajax編輯器中獲取純文本?
- 24. 如何連續從編輯文本中獲取值android
- 25. 如何從列表視圖中獲取編輯文本值
- 26. Silverlight TextBlock - 使用橢圓獲取文本
- 27. 可編輯TextBlock,插入索引查詢
- 28. 獲取可編輯的ComboBox的當前文本在.NET 4
- 29. 如何獲取文本從綁定的TextBlock商店App C#
- 30. 如何獲取其他活動的編輯文本的可見性結果?
嗨裏卡多,歡迎SO。您的問題沒有顯示足夠的研究成果。在問你的下一個問題之前,請閱讀http://stackoverflow.com/help/how-to-ask。 –