This is right. On submit I clean this, and if I got errors, I put the symbol again...
Like this:
(...)
buttons: [{
text: 'Salvar',
handler: function(botao) {...
Type: Posts; User: daviscabral
This is right. On submit I clean this, and if I got errors, I put the symbol again...
Like this:
(...)
buttons: [{
text: 'Salvar',
handler: function(botao) {...
Hi man!
Thanks and heere follow the last version (works on FF and IE) to Ext 2.0:
Ext.ux.MoneyField = function(config){
var defConfig = {
autocomplete: 'off',
allowNegative: true,...
You can use the Ext.ux.InputTextMask plugin.
Here: http://extjs.com/forum/showthread.php?t=21040
UPDATE: This plugin has copy&paste feature! ;-)
@mm_220:
Here the code and screenshots of my problem:
http://extjs.com/forum/showthread.php?t=23133
Thank you!
Humm.... Not yet...
But, this config to gridpanel has something that can generate that?
http://201.3.90.11/grid_panel.jpg
Thanks
Without this the problem occurs too.
I will try to make an example page of this and put here.
Thanks!
UPDATE:
At example page, I don't have the problem with grid heigh! Then, I will search...
Thanks Animal!!
This solve another problem (with search field and grid). :-)
But the problem with size (height) and lazy adjusts of tab width continues.
If I set height at the gridpanel, this...
Sorry, I didn't understand.
All here is create by javascript (no html code).
My code is something like this:
new Ext.Window({
width: 500,
height: 335,
minWidth: 500,
Hi,
I have a window with tabpanel inside with gridpanel inside and one problem.
The resizing works if I put the Grid or Form directly at the window. But if I need to put this in tabpanel in...
And if I have only window, with some tabs but this happens?
I have the same problem, but I have a window, one tabpanel and 3 tabs (2 with grid and this error).
I found the error:
Ext.form.Field.prototype.msgTarget = 'side';
case 'side':
if(!this.errorIcon){
var elp =...
Follow:
DadosVisita: function() {
var dialog = Ext.WindowMgr.getActive();
var dsProspectsTiposContatos = Ext.StoreMgr.get("dsProspectsTiposContatos");
if ( !dsProspectsTiposContatos...
On focus/blur this happens:
elp has no properties
this.errorIcon = elp.createChild({cls:'x-form-invalid-icon'}...
This is enough!
Thanks Jack!
Hey guys!
What did you think about to put the source with documentation??
Like api.rubyonrails.com.
I think that is very helpfull.
Thanks and keep with the great job! ;)
UPDATE: I solved this problem using this plugin to Ext 2.0: http://extjs.com/forum/showthread.php?t=21040
Hi!
I have an extension at TextField, named MaskFormattedTextField, and one method give...
Did you will update this code to Ext 2.0?
I will appreciate this too.
Thanks!
Hi,
I have some datefields and when I click at any november day (year 2007), the field is filled with a date with one day before.
What can be?
Code:
new Ext.form.DateField({
...
Overrides the method "setValue" to format your string if her cames without. :)
Hi,
See this: http://extjs.com/forum/showthread.php?p=71033#post71033
:-)
Ext.ux.MoneyField = function(config){
var defConfig = {
autocomplete: 'off',
format: 'BRL',
currency: 'R$',
showCurrency: true
};
Ext.applyIf(config,defConfig);
...
To make "TAB" work, replace your "stopEventFunction" by this:
stopEventFunction : function(evt) {
var key = evt.getKey();
var ignore = false;
switch (key)...
I tried this with another approach.
I create a element DIV at the document.body and after I move his to the dialog.
But the problem still have.
var self =...
@Animal: How do you do this?
I have the same problem.