Hello,
I have a FormPanel, which has a toolbar (config: {tbar...}). The toolbar has a named text field.
I would like to submit the whole FormPanel, along with the text field's value. The...
Type: Posts; User: Tuom Larsen
Hello,
I have a FormPanel, which has a toolbar (config: {tbar...}). The toolbar has a named text field.
I would like to submit the whole FormPanel, along with the text field's value. The...
No, it's not. (Spam?)
The strange thing is, that if I "save()" and "reload()", it starts to working normally. But it doesn't really tell me why.... (besides, it calls the server twice, then.)
It gets selected - everything works as expected, it's just that all the newly added rows, once clicked, remain highlighted.
I have
singleSelect: true
If I add another record it...
Hello,
I'm adding a row to a grid, like this:
var r = new ds.recordType({
foo: 'bar'
});
ds.add(r);
Ext version tested:
Ext 3.3.1
Adapter used:
ext
Hello,
I'm extending the Panel, and would like to add a FormPanel to every new instance automatically.
Ext.myPanel = Ext.extend(Ext.Panel, {
...
And you calling ".remove()" as well? And what happens it [the panel] has some child components? Does ".destroy()" removes them too?
Hello,
I added some items to a panel (".add()", ".doLayout()"). Now, I would like to "undo" it, so there is no trace left whatsoever. How to do it? I read a few threads here, that plain...
Just for the record:
(from Docs http://dev.sencha.com/deploy/dev/docs/?class=Ext.tree.TreeLoader)
To pass extra parameters, an event handler may be attached to the "beforeload" event, and the...
Hello,
I would like to generate a tree with different shapes based on remote DB. I thought I would pass some data through GET query string to the webserver.
In other words, I thought I need to...
I think I understood! Thanks a lot!
Thanks for the reply!
But I'm not sure I fully understood. Please, could you be more specific?
I mean, I have one store:
var store = new Ext.data.Store({
proxy: new...
Hello,
I saw the "Binding: Grid -> Form" example:
http://dev.sencha.com/deploy/dev/examples/form/form-grid.html
and I sort of get it..
Please, but is it possible to add one more grid in...
Hi,
I'm just reading:
http://dev.sencha.com/deploy/dev/examples/form/custom.html
Please, how do I make it search across all the columns of datastore? Even dates?
Ah, ok. Thanks!
Hi,
Please, I have the following code:
Ext.onReady(function(){
var viewportport = new Ext.Viewport({
layout: 'border',
To put it in other way, is it possible to populate a tree, instead of a grid, from a data provider?
Hello,
I see in the examples that it is possible to bind data to a form, so when I select a row of a grid the form's fields get populated automatically.
But does the same work if I use a tree,...
Wonderful! Thanks a lot!
Yes, it works!! Thank you!
Yes, and I can add new html to it, via:
Ext.getCmp('panel').add({html: '....'});
That doesn't work too.
The panel is inside of a tabpanel, Ext.getCmp() returns it. deferredRender is false.
Here's what Firebug tells about it:
baseCls: "x-panel",
bodyCls:...
I tried that too, but Firebug says that "update" is not a function...
Hi,
please, how do I update panel's "html" attribute? I mean:
var panel = Ext.Panel({
id: 'panel',
html: 'some html'
};
and after some event I would like to change it so 'some...