Search Type: Posts; User: TampaBay55

Page 1 of 5 1 2 3 4

Search: Search took 0.02 seconds.

  1. 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...
  2. 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
  3. 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...
  4. 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...
  5. 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.
  6. 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>'
    );...
  7. 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...
  8. Hell Siebmanb:
    The Controller:

    /**
    * Main Application Controller
    **/
    Ext.define('GlsAmCrm.controller.appController',{
    extend: 'Ext.app.Controller',
    config:{
    refs: {
  9. 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...
  10. 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
  11. 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...
  12. 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
    **/...
  13. 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...
  14. 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...
  15. 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
    **/...
  16. 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:...
  17. 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:{
  18. 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...
  19. 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:...
  20. 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...
  21. Replies
    2
    Views
    442
    Thanks, Mitchell.

    That's exactly how I handled it. I appreciate your help.
  22. 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...
  23. Replies
    1
    Views
    206
    Please disregard this post....programmer error :-(
  24. 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. 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
Page 1 of 5 1 2 3 4