Fixed by adding
defaults:{baseCls: 'x-plain', layout:'form'},
under
layout:'column',
Type: Posts; User: sublimespot
Fixed by adding
defaults:{baseCls: 'x-plain', layout:'form'},
under
layout:'column',
When putting a textfield inside a column, the textfield does not display the fieldLabel. The textbox is there but there is no text beside it.
{
xtype:"fieldset",
title:"Legend",...
When I changed to a singleSelect selection model,
sm: new Ext.grid.RowSelectionModel({singleSelect: true}),
the following line of code worked:
g_items = grid.selModel.getSelections();
Tried with a callback and still having trouble
I made a global variable for the items (g_items) just until I get the code working.
g_items = grid.selModel.getSelections();
// Refresh the...
I think I see what is happening. The refresh (grid.store.load) is happening asynchronously and is occurring after the selectRecords()
This is not working. Can someone point me in the right direction. Thanks
// Store the selected item
var oItems = grid.selModel.getSelections();
// Refresh the customer grid...
I have a multi panel application. A grid in one panel and a form in one panel.
When I update some data via a form, I want to update the grid with this information.
So I call GridPanel.store.load()...
That fixed the problem. Thank you!
I have the same problem here!!
I have a combobox that is populated by a store but I would also like the ability to enter arbritary text. From the docs, forceSelection:false should do the trick, but it does not work. If I type a...
I'm able to get to the data with this method, but it's not very clean..
success: function(f, a) {
alert(a.response.responseXML.firstChild.childNodes[4].firstChild.nodeValue);
I have a login form. When the form is submitted, the user is authenticated, and I am returning some extra data with the XML return. My reader looks like this:
reader : new Ext.data.XmlReader({...
I have had the exact same problem . You are not alone.
After I add the Form onto a panel, I call .doLayout() and it seemed to solve it for me.
Thank you!! Good to go
Im just having trouble getting a handle on the object
new Ext.Toolbar.Button({
text: 'Show Listings',
id:'cmdShowListings',
iconCls:'tabs',
disabled: true,
I am having difficulty finding how to enable/disable tbar buttons programatically. Setting these values via a parameter (at run time) works fine.
To solve this one I had to load each panel IN THE FOREGROUND programatically. If I loaded the cards via the "items" property on the card layout, this error occurs.
...
I have a form panel which looks great when I render it to a div using "renderTo". However, when I create a Viewport with a Panel (layout:card), and put the form panel into the card layout, the...