i find cellStyle in FormItem properties but i dont know that how to use it for my item.
there is my code:
there is my code:
Code:
DynamicForm.create({
//cellStyle : "uploadButton",
numCols : 4,
layoutAlign : "center",
encoding : "multipart",
action : "somaction.action",
canSubmit : true,
ID : "contactsForm",
fields : [
{title : "Choose File",name : "upload", editorType : "upload", wrapTitle :false,cellStyle : "uploadButton" },
{title : "upload", editorType : "submit", startRow : false}
]
})
Comment