I want to have a textbox or any form element with out any title. But a colon is appearing in the front. How to avoid this?
:[Hello]
My code is:
isc.DynamicForm.create
({
top: 10,
left: 20,
fields:
[
{
type: "text",
defaultValue: "Hello"
}
]
});
:[Hello]
My code is:
isc.DynamicForm.create
({
top: 10,
left: 20,
fields:
[
{
type: "text",
defaultValue: "Hello"
}
]
});
Comment