Aloha again, stackoverflow.
I'm experiencing a bit of an interesting situation here. I was previously using a setup that used a tab panel in order to display all of my content, but now, I'm rewriting it to be inside of a viewport. Now, it's working just fine, except, all my forms, which are located in the Tab panel, are not having any of the buttons showing up in them. Anyone have any idea why that might be happening? If you need any more specifics, please ask, as I'd be more than happy to provide them, but I can't provide anything more if I'm not sure what you need.
Some example code here:
Also, just to clarify, bh and bw are the body width and body height of the document open.
newPaste = Ext.create("Ext.form.Panel",{
id: "newPaste",
title: "New Paste",
bodyPadding: 5,
waitMsgTarget: true,
fieldDefaults: {
},
items: [{
xtype: 'fieldset',
id: "newPasteForm",
title: 'New Paste',
defaultType: 'textfield',
defaults: {
width: bw*0.72,
},
items: [{
fieldLabel: "Title",
emptyText: "Title",
name: "title",
id: 'title',
validator: function(v) {
if(v.length == 0) {
return "You can't submit an empty title.";
} else { return true; }
}
}, {
fieldLabel: "Post",
xtype: 'textareafield',
name: 'post',
id: 'post',
height: bh*0.50,
validator: function(v) {
if(v.length == 0) {
return "You can't submit empty content.";
} else { return true; }
}
}, {
fieldLabel: 'Language',
name: 'lang',
xtype: 'combobox',
store: languages,
forceSelection: true,
matchFieldWidth: true,
mode: 'local',
minChars: 1,
triggerAction: 'all',
queryParam: 'query',
id: 'lang',
paramsAsHash: true,
typeAhead: false,
editable: false,
valueNotFoundText: "That language wasn't found.",
forceSelection: true,
valueField: "language",
displayField: "language",
emptyText: "Select a language."
}]
}],
buttons: [{
text: "Submit",
}, {
text: "Submit",
handler: function() {
var values = Ext.getCmp("newPaste").getForm().getValues();
var title = values.title;
var post = values.post;
var lang = values.lang;
lang = lang.replace(/\s*$/,"");
post = post.replace(/\s*$/,"");
title = title.replace(/\s*$/,"");
if(title.length == 0) {
Ext.Msg.alert("Notice", "You can't submit with an empty title.");
return false;
}
if(post.length == 0) {
Ext.Msg.alert("Notice", "Please provide some content for your submission.");
return false;
}
Paste.create({title: title, post: post, lang: lang}, function(j) {
if(j.error) {
Ext.Msg.alert("Error",j.error);
} else {
Ext.Msg.alert("Notice",j.msg);
pastes.load();
pastes.filterBy(function(rec) {
return true;
});
Ext.getCmp("newPaste").getForm().reset();
}
});
}
}],
})
Then afterwards, I have this tab panel:
tabs = Ext.create("Ext.tab.Panel", {
region: "center",
id: "tabWidget",
resizeTabs: true,
enableTabScroll: true,
defaults: {
autoScroll : true,
},
items: [
Ext.getCmp("newPaste"),
login,
logout
],
listeners: {
render: {
fn: function() {
qst = window.location.hash.substr(1);
opts = qst.split(/&/);
if(opts.length < 1) { return; }
for(i = 0; i < opts.length; i++) {
if(opts[i] == "") { continue; }
addPaste(opts[i]);
}
Auth.loggedin(null,function(r) {
if(r.loggedin == 1) {
logout.enable();
login.disable();
} else {
logout.disable();
login.enable();
}
})
return true;
}
}
},
plugins: Ext.create('Ext.ux.TabCloseMenu', {
extraItemsTail: [
'-',
{
text: 'Closable',
}
],
})
});
And finally, the viewport:
vue = Ext.create('Ext.container.Viewport', {
layout: 'border',
renderTo: 'ext',
items: [
list,
tabs
]
});
The list item is just a list of posts made with the site. Nothing too extremely important, though, if need be, I can provide that.