Mark Required Fields in a ExtJS Form

May 4th, 2009 · 9 Comments

I just had the requirement to mark required fields in a ExtJS form. I started with the code from Jason (Thanks!) and extended it a bit. Now you may customize how the field marker would look like by assigning a CSS class to a requiredFieldCls property. I also added a descriptive tooltip for the marker [...]

[Read more →]

Topics: · , , , ,

Getting values from a form containing combos in Ext

April 7th, 2009 · 2 Comments

Actually it is pretty easy to get the values of all fields of a form in Ext: You just have to call the getValues() method of the BasicForm. The problem with that approach is that it just takes the values directly from the DOM and is not calling the getValue() for each field (Which I [...]

[Read more →]

Topics: · , , ,