Search Type: Posts; User: zhegwood
Search: Search took 0.03 seconds.
-
14 Apr 2010 8:25 AM
- Replies
- 4
- Views
- 1,850
I was able to add a button to a composite field:
this.alertLink = new Ext.form.TextField({
name: 'alert_link_fake',
hideLabel: true,
emptyText: "e.g., http://www.AssociationVoice.com",... -
13 Apr 2010 2:19 PM
- Replies
- 3
- Views
- 2,171
Try:
xtype: "grid",
layout: "fit"
I haven't done much work with grids lately, but I think that might work. -
13 Apr 2010 1:31 PM
- Replies
- 2
- Views
- 507
new Ext.form.FormPanel({
items: [
{
xtype: "container",
layout:"table"...
},
{
xtype: "combo"
}
] -
13 Apr 2010 12:40 PM
- Replies
- 1
- Views
- 703
Actually, it has to do with calling setValues() on the form on render and nothing to do with the actual layout.
the form's render listener does this:
var form = this.getForm();... -
13 Apr 2010 12:23 PM
- Replies
- 2
- Views
- 837
Why not use a table layout?
var table = new Ext.Container({
layout: "table",
layoutConfig: {
columns: 3
},
items: [ -
13 Apr 2010 12:04 PM
- Replies
- 2
- Views
- 1,256
In the past, I've ran into this when the heights or widths were negative numbers. FF will not error, but IE will.
-
13 Apr 2010 11:59 AM
- Replies
- 1
- Views
- 703
Fixed... Problem was setting the value of fields that weren't rendered yet... Nothing to do with the CompositeField.
I've used CompositeField successfully in the past but am having problems with... -
4 Mar 2010 8:03 AM
- Replies
- 2
- Views
- 802
Weird, yeah must have been. Hmm. Thanks for the response Re: trackLabels. Works like a champ!
-
3 Mar 2010 3:02 PM
- Replies
- 2
- Views
- 802
Ext version tested:
Ext 3.1.1
Adapter used:
ext -
3 Mar 2010 11:27 AM
- Replies
- 6
- Views
- 1,416
You'll basically define objects in the js file, but render them somewhere else.
//Something like this would be in one js file:
YourObj = {
getpanel: function() {
var panel = new... -
3 Mar 2010 10:36 AM
- Replies
- 1
- Views
- 797
If you use a button, it would probably be easiest to use the scrollIntoView function.
//add this to the end of your items list
var anchor = new Ext.Component({
autoEl: {
tag: "a",
... -
3 Mar 2010 8:24 AM
- Replies
- 12
- Views
- 1,766
Hey, so I have some form fields that are set to hidden:true but when they're rendered only the input is hidden but the label is still visible. This has happened with a TextField and with a ComboBox....
-
26 Feb 2010 2:34 PM
- Replies
- 13
- Views
- 12,024
Found a problem calling hide(). It would only hide the input box. May have already been addressed, but I added these overrides:
hide: function() {
var ct = this.el.up('.x-form-item');... -
3 Feb 2010 2:04 PM
Jump to post Thread: Ext image request? by zhegwood
- Replies
- 1
- Views
- 779
Hey, not sure if this belongs here, but I'm having trouble creating a non-blocking image request. If I use Ext.Ajax.request(...) I get the image back as text so if there's a way to make that work,...
-
22 Jan 2010 1:47 PM
Jump to post Thread: Read-only fields on form by zhegwood
- Replies
- 4
- Views
- 2,216
If you don't need to submit it, why not use 'disabled: true'?
Ext.form.TextField({
name: "blah",
value: "neato",
disabled: "true"
}) -
22 Jan 2010 1:44 PM
- Replies
- 7
- Views
- 967
I've never had a problem when the files and onReady call are as follows:
<html>
<head>
<script ...></script>
<script ...></script>
<script ...></script>
<style... /> -
20 Jan 2010 1:46 PM
- Replies
- 7
- Views
- 2,229
Just changed "totalRecords" to "totalProperty" and it worked.
url: '/messenger_svc/messenger_svc_ajax.asp?l=delivery_report&p=' + gMsgId,
storeId:... -
20 Jan 2010 11:23 AM
- Replies
- 2
- Views
- 1,527
Try 'return true' at the end of your before show function.
-
20 Jan 2010 10:46 AM
- Replies
- 7
- Views
- 2,229
Any love on this issue? Still can't figure out what's going on.
-
18 Jan 2010 2:51 PM
- Replies
- 7
- Views
- 2,229
I've re-worked it a little but with the same result:
var storeDR = new Ext.data.XmlStore({
url: '/messenger_svc/messenger_svc_ajax.asp?l=delivery_report&p=' + gMsgId,
storeId:... -
18 Jan 2010 10:54 AM
- Replies
- 7
- Views
- 2,229
Should this be filed as a bug or have things changed in 3.1?
-
15 Jan 2010 3:17 PM
- Replies
- 7
- Views
- 2,229
I am having a similar problem. This worked in <Ext3.1. The id and totalRecords are being set as the string literal and not getting the attribute values from the XML. Any ideas?
Here is my... -
8 Jan 2010 1:41 PM
- Replies
- 0
- Views
- 603
I have a color palette with a 'select' listener that's firing when the component is rendered when I specify a value. If I specify no value the select event is not fired. Is this expected behavior?...
-
6 Jan 2010 7:17 PM
- Replies
- 5
- Views
- 1,222
So, I remember seeing somewhere that someone wrote an override that adds a class to every Ext element but I've been looking for it for a while and can't find it. That would probably be the easiest...
-
6 Jan 2010 2:19 PM
Jump to post Thread: How do you guys debug in IE by zhegwood
- Replies
- 10
- Views
- 1,550
It's actually better in some respects as you're able to set breakpoints and step through javascript code in IE8.
Results 1 to 25 of 117
