I have run into the same issue with this field in the last row of a grid, when the timePosition is set to below. It seems like the time field portion shows up inside the grid and gets cut off by the...
Type: Posts; User: Keylan
I have run into the same issue with this field in the last row of a grid, when the timePosition is set to below. It seems like the time field portion shows up inside the grid and gets cut off by the...
Nonsense :-) Still useful for others, like me.
Yes.
Make 3 grids, and 3 dd groups.
Assign grids and groups to one ddgroup.
Make each dd group point to a different grid el.
Bah. Got it. getRootNodes wasn't correctly grabbing the root nodes. Ignore previous post.
MaximGB - Great plugin, but couldn't help but notice that you are not actually adding the record to the store in this code sample. Am I missing something?
(In reference to this post.)
I am...
Thanks gelleneu - was running into the same issue and that fixed it.
http://www.sencha.com/forum/showthread.php?10311-Nested-grid-within-Expander-grid
Limit will stay the same, set by pageSize. Start should raise or lower by pageSize when you change the page. Since I see start is 3 in the screen shot, and it probably started at 0 - it seems that...
Also check out the "append" option of the loadData method on the store.
Why are you adding the column to the column model?
I can only offer suggestions as I do not have time to try it myself :-\
But perhaps overwriting the destroyRecord method for your writer to include more than the id will do it?:
...
Hurray teamwork.
What is 'this' referencing when calling this.getValue()?
If you define that function externally:
function changeListener (obj) {
tmpProp[obj.id] = this.getValue();
for (var...
http://dev.sencha.com/deploy/dev/docs/?class=Ext.LoadMask
Just a shot in the dark here, but does setting writeAllFields on the writer send all field for deleted records as well as updated records?
Hey, thanks a lot. The trick was combo.view.refresh() from the beforeedit event of the grid. Don't know why that was so difficult for me to find. :)
By the way, is it just me or does the...
What exactly are you trying to do in the loop? The error is caused by trying to access an index of the array that does not exist.
I am attempting to use a template with a combobox inside an editorGridPanel, and having issues getting the template to recompile based on the currently selected row. The template is as follows:
...
Thanks for the reply Condor. That is quite confusing, considering the API docs specifically state that you can use add:true to replace existing records. :)
The good news is that I did find this...
From my understanding, setting the second argument (append) of store.loadData to true will add records to the store instead of replacing the entire data set. However, the definition notates:
...
I am also having issues with tabbing out of combo box columns in a grid panel. Has there been any update on this?
Last try bump.
Bump. Could really use an answer here. Has nobody else run into this?
I have an EditorGridPanel that has a few columns - a couple of them having combobox editors. When I select an item in one of these specific columns, I need to do some post processing to update the...
Not seeing the issue here. Have the button's handler check to see if "Mustang" is selected - if yes, show the popup - if not, submit the form.
I am not familiar with an easy method for finding...