ui.property and placeholder

Hi, is there anyway to add a placeholder text to a type:“text” in a ui.property

https://snippet.webix.com/5yga5ce1

Thank you

Hello,
Yeap, it wouldn’t work as in the text view. When you try to click on the input of type: text the text editor(doesn’t have placeholder) is opened. The solution is to create a custom editor and using its property
Creating custom editor
Define custom editor to ui.property
Sample: https://snippet.webix.com/gsgcutuo

or you can use onAfterEditStart event and set required attribute to the inputnode
https://snippet.webix.com/ivec9yxi

Thank you guys :slight_smile: