Hi jgarcia,
so the method you provided loads all data into a list. So this means I need to remember the exact order in which they are in the form ? Can I use form.submit without specifying params...
Type: Posts; User: manojo
Hi jgarcia,
so the method you provided loads all data into a list. So this means I need to remember the exact order in which they are in the form ? Can I use form.submit without specifying params...
Hi,
by adding
deferredRender: false
to my panel, I get an NS_ERROR_NOT_AVAILABLE error.
My panel is not rendered directly, it is inside a formPanel. Does this make a difference ?
As for...
Hi,
how can I at least know whether the function is fired ? Tried to look through firebug, but don't really have an idea what to look for.
Thanks,
Manojo
Hello,
I have a tabPanel in a FormPanel, and the tabpanel has 3 tabs.
When I post the form and view the POST object, only the values in tabs I have already seen appear.
For example if I have...
Hello,
I had a look at this http://extjs.com/forum/showthread.php?t=27289&highlight=formpanel+render and wanted to try a few things: here's what I did :
Ext.onReady(function(){
...
Hi Animal,
didn't see your answer before posting ...
Thanks for the answer,
Manojo
Hi,
I think I found the answer to my question : The problem is that the ArrayReader, as I wrote it above, caters to an Array of Arrays of Strings, where as my request gives an Array of Strings.
...
Hello,
I have made a grid that loads data into a store based on a URL that returns an Array :
var cbm = new Ext.grid.CheckboxSelectionModel();
// the column model has information...
Hi Saki,
thanks for that. Is there a mean anyhow to call this function when isValid for a form is called ? I had a look at the code for SimpleForm, and basically what is does is, call the...
Hi jsakalos,
I'm sorry but I didn't completely understand what you said. Do you suggest that I override isValid function for forms ?
Thanks,
Manojo
Hi,
thanks for this piece of code. I've added a bit of code that would help me. I have a grid with a checkboxSelectionModel, and the grid will be valid if there is at least one selected value : so...
Hello,
I am using an EditorGrid with a CheckBoxSelectionModel. it is a component inside a formPanel. My idea is to fire an error if zero components are selected.
So I was looking for different...
Hi,
actually I found another solution for my problem . I just needed to send the selected items by POST. So instead of JSON encoding it, I just wrote the following script :
function...
Thanks mjlecomte,
I will inspect in detail and get back. A first glance though, tells me that the last line (test_form.form.getValues(false)) has no properties at all.
Thanks,
Manojo
Hi,
here's what I get (please tell me if you need more precise info on any one object):
inside cancel handler with arguments = [Object initialConfig=Object minWidth=75 hideParent=true, Object...
I stared at it quite a bit, then I finally got somewhere :
the data : after the return call , contains "{}" ;
after stepping into the code, I got to where the encode function is defined :
as...
Hello,
I have a form panel in which I insert just one grid :
var test_form = new Ext.FormPanel({
onSubmit: Ext.emptyFn,
submit: function() {
...
Sorry devnull,
I misread the property.
Thanks for the help !
Manojo
Hi,
thanks for the answer, but I think you didn't understand my question. I was saying that the DateField class has no minDate property as such. So does this mean I have to go and extend DateField...
Hi,
I think that DatePicker has minDate and maxDate, but it seems that DateField doesn't have these. How can I use DatePicker methods or implement my own ?
Thanks,
Manojo
Hello,
I've tried looking a bit deeper into the file after reading a few posts, and using ext-all-debug, but there are some things I still am not able to understand :
Basically, I'm trying to...
Okay, I just read through this post here :
http://extjs.com/forum/showthread.php?p=139375#post139375
and I have understood that it is a component coded by "myself". I have copied the code on...
Hello,
I just had a look at the API, and found out that Ext.grid.CheckColumn is no longer available. I tried anyway using it ,and Firebug gives me a "wrong constructor" error. So I guess that this...
hello,
I tried to look at a few examples on how to send form data to the server side, but I haven't actually got the hang of it. I am trying to adapt an existing basic html form into Ext (for a...
Specifying the height seems to do the trick !
Thanks a lot everyone for your answers
Manojo