Search Type: Posts; User: TampaBay55
Search: Search took 0.02 seconds.
-
7 Feb 2013 9:04 AM
Jump to post Thread: ExtJS4 Selector Question by TampaBay55
- Replies
- 2
- Views
- 203
Thanks ssamayoa!
That's exactly what I did after some sleep on it and it worked perfectly. I just didn't have an opportunity to update my request. It is, on the other hand, good to know that I... -
6 Feb 2013 2:55 PM
Jump to post Thread: ExtJS4 Selector Question by TampaBay55
- Replies
- 2
- Views
- 203
Greetings
I am attempting to ref a grid that is in a region:
...
region: 'south',
layout: 'fit',
split: true,
items:[{
xtype: 'grid',
border: false -
4 Jan 2013 5:15 AM
Jump to post Thread: Issue with IE7 How to debug? by TampaBay55
- Replies
- 5
- Views
- 666
Greetings:
I have an application that works in IE9 / Safari / Chrome / Firefox. It will not work in IE7 or IE9- Compatibility View and the error that is thrown is:
Unable to get value of the... -
29 Dec 2012 5:14 PM
Jump to post Thread: Styling Toolbar in ie9 by TampaBay55
- Replies
- 1
- Views
- 301
Greetings all:
Attempting to style the background of a toolbar using the style config:
style: "background: #033E6D;"
All browsers work except for ie9 (Shocker!). Is there some sort of work... -
8 Dec 2012 8:50 AM
Jump to post Thread: Grid RowExpander Problem by TampaBay55
- Replies
- 4
- Views
- 665
Hi Flanders:
I changed the template to look like:
var rowTpl = new Ext.XTemplate(
'<div>TEST</div>'
);
and I still get the same result. -
8 Dec 2012 6:09 AM
Jump to post Thread: Grid RowExpander Problem by TampaBay55
- Replies
- 4
- Views
- 665
Greetings All:
Having a problem with the grid row exapnder. I have the following code:
var rowTpl = new Ext.XTemplate(
'<div>{paymethod}</div>'
);... -
9 Nov 2012 9:00 AM
Jump to post Thread: Errors while compiling SASS by TampaBay55
- Replies
- 2
- Views
- 245
Greetings all:
I copied the code for a new UI from a theming article to test it out. Added the line to import the UI into my main SASS file and attempted to compile. I get SEVERAL errors... -
27 Oct 2012 6:39 AM
- Replies
- 5
- Views
- 339
Hell Siebmanb:
The Controller:
/**
* Main Application Controller
**/
Ext.define('GlsAmCrm.controller.appController',{
extend: 'Ext.app.Controller',
config:{
refs: { -
27 Oct 2012 4:05 AM
- Replies
- 2
- Views
- 527
Hey Mitchell:
In EXTJS4 I would use the show event to load the record store for the list and select the first record in the list. I had to use the show event because I wanted to make sure the... -
26 Oct 2012 9:38 AM
Jump to post Thread: Confused on loading panels MVC by TampaBay55
- Replies
- 3
- Views
- 375
Thanks for your help Schildi....I think I did something similar to your approach but with an xtype. All works fine now. Thanks, again.
TB55 -
26 Oct 2012 9:28 AM
Jump to post Thread: Confused on loading panels MVC by TampaBay55
- Replies
- 3
- Views
- 375
I added the following line of code to the newGrpData method and the panel displayed:
Ext.Viewport.add({xtype:'grpform'}).show();
Will someone confirm that this is the proper method for popping up... -
26 Oct 2012 8:00 AM
Jump to post Thread: Confused on loading panels MVC by TampaBay55
- Replies
- 3
- Views
- 375
Greetings:
I am very confused on how to pop up a form panel when a button is clicked in the MVC architecture. This is my controller:
/**
* Main Application Controller
**/... -
25 Oct 2012 10:14 AM
- Replies
- 2
- Views
- 527
Greetings:
Using ST2, I define a small list using the MVC pattern. When the application runs, all appears to work; however when I atttempt to listen to the "show" event on the grid, nothing... -
24 Oct 2012 5:43 AM
- Replies
- 5
- Views
- 339
Hi Mitchell:
Thanks for the reply:
I do have the controller in the Ext.application - in fact will console.log a message for me in the init. But I am not able to catch the grid show event. I... -
24 Oct 2012 4:02 AM
Jump to post Thread: Need help getting started by TampaBay55
- Replies
- 1
- Views
- 225
Greetings:
I am just not sure what I am doing wrong here. With all of the different examples anbd styles of programming, my head is spinning.
Model:
/**
* GrpData Model
**/... -
22 Oct 2012 9:20 AM
- Replies
- 5
- Views
- 339
Greetings:
Not sure why I am having so much trouble here. I have the following code:
/**
* Main Application Controller
**/
Ext.define('GlsAmCrm.controller.appController',{
extend:... -
22 Oct 2012 7:53 AM
Jump to post Thread: Uncaught Exception on Model by TampaBay55
- Replies
- 1
- Views
- 240
Greetings:
Can anyone see a problem with the following code?
/**
* GrpData Model
**/
Ext.define('GlsAmCrm.model.grpModel',{
extend: 'Ext.data.Model',
config:{ -
12 Oct 2012 11:47 AM
- Replies
- 1
- Views
- 384
Greetings All:
I am just now starting to dabble in the Sencha Touch 2 stuff and I have already run into a problem. I do realize that the posted code is not conventional nor it is structured... -
3 Oct 2012 3:52 AM
Jump to post Thread: CheckBoxModel Issue by TampaBay55
- Replies
- 1
- Views
- 220
Please disregard....further study of the documentation indicates that I need to set keepExisting to true when firing the select method: How I corrected my issue:
...
renderer:... -
3 Oct 2012 3:28 AM
Jump to post Thread: CheckBoxModel Issue by TampaBay55
- Replies
- 1
- Views
- 220
Greetings:
While loading data into a grid store using the CheckBoxModel, I am attempting to render each row as "selected" based on a value of a field in the record. The problem I am having is... -
2 Oct 2012 11:56 AM
Jump to post Thread: General Design Question by TampaBay55
- Replies
- 2
- Views
- 442
Thanks, Mitchell.
That's exactly how I handled it. I appreciate your help. -
28 Sep 2012 12:42 PM
Jump to post Thread: General Design Question by TampaBay55
- Replies
- 2
- Views
- 442
Greetings All:
I have a general design quandarie that I woul like to get some views on. When I do a store.sync(), I am able to catch resultsText in the "exceptions" listener of the proxy. If... -
25 Sep 2012 9:04 AM
Jump to post Thread: Panel tpl not displaying by TampaBay55
- Replies
- 1
- Views
- 206
Please disregard this post....programmer error :-(
-
25 Sep 2012 8:37 AM
Jump to post Thread: Window remains masking by TampaBay55
- Replies
- 3
- Views
- 474
I would close the window on a save, instead of hiding it.
prefWindow.close()
In the settingsFn method I would do the following:
prefWindow = Ext.widget('preferencewindow').show();
You... -
25 Sep 2012 8:05 AM
Jump to post Thread: Panel tpl not displaying by TampaBay55
- Replies
- 1
- Views
- 206
Greetings:
I have the following code:
var grpTpl = new Ext.XTemplate(
'<div id="grpadd-div">',
'<h1>I Should See This</h1>',
'</div>'
);...
Results 1 to 25 of 118
