I code
this.$$.find("#form").dform({
"html" :
[
{
"class":"form-control",
"id" : "date",
"type" : "text",
"placeholder" : "Date"
}
]
});
it generate
<form id="form">
<input type="text" class="form-control" id="description" placeholder="Description">
</form>
what i want is
<form id="form">
<div class="form-group">
<input type="text" class="form-control" id="description" placeholder="Description">
</div>
</form>
--
You received this message because you are subscribed to the Google Groups "jQuery dForm" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jquery-dform...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.