Various bugs and fix requests with w2ui.form
See original GitHub issue1- The disable feature should be added to the action button. because I don’t want the save button to be active. I want it to be active when there is a change in w2ui.form. In this, it is necessary to add disabled to the button.
2- “render” method should be added for each field in w2ui.form. example;
{
field: 'CreatedDateTime',
type: 'datetime',
html: {
label: 'Oluşturulma Tarihi'
},
render: function (date) {
return w2utils.date(date)
}
}
3- I have a function create Form(recid, title) {} method. If I’m going to make an edit, I assign the value of selection to the value of recid. If I am going to add a new record, I give its value zero. but there is a problem. For example, there is a field called CreateDateTime. It should be displayed when edited. “CreateDateTime” should not be a field when adding a new record. ok this issue seems to be "push"able using the w2ui.form.fields array. but then “render function” probably won’t work.
4- When the text field is disabled, the cursor sign appears when the mouse is hovered, it looks like it can be edited. cursor icon should be changed to make it understandable.
Appearing

Must be

Issue Analytics
- State:
- Created 2 years ago
- Comments:11 (8 by maintainers)

Top Related StackOverflow Question
Demo for w2ui 2.0:
http://jsfiddle.net/5z1boft7/
For w2ui 1.5 replace
with
Thank you for you feedback. Some points are great. Here is some feedback (I will keep the issue open to make sure it is taken care of)