Hello,
i want to create a TextArea without a Title in it.
In this Code
you can find a simple TextArea. Some of you may think: "Oh, thats easy. Just remove the title-attribute like this:
But then you will find out, that a ":" is still present. Is it possible to create a TextArea without any kind of Title?
thx alot.
i want to create a TextArea without a Title in it.
In this Code
Code:
isc.DynamicForm.create({
width: 300,
fields: [
{title:"ThisTitleIdontWantToSee", type:"textArea"}
]
});
Code:
isc.DynamicForm.create({
width: 300,
fields: [
{type:"textArea"}
]
});
thx alot.
Comment