Search Type: Posts; User: Ballsacian1

Page 1 of 3 1 2 3

Search: Search took 0.02 seconds.

  1. Replies
    823
    Views
    290,091
    Ext.grid.livegrid.CheckboxSelectionModel mouse and keyboard events called twice

    How to Reproduce:
    Load the Checkbox demo in the livegrid source and either click on a row or try moving up and down...
  2. You can also temporarily resolve this issue by putting Ext.Logger in one of your class requires.
  3. I'm actually trying to use the CSS3 Filter attribute. In standard CSS it would like like filter : brightness(59%); but this conflicts with functions that have been introduced in RC1. the sass...
  4. RC1 doesn't use the data from prepareData to actually populate the itemTpl. prepareData gets called by the DataItem class but then the ListItem call ListItem.getBody().setRecord(record) which is what...
  5. I've been trying to figure out a way, in case in the future other properties have this issue I can go about escaping them. Is there any way to escape something in sass so that it won't try and run a...
  6. I was using the following scss in my application.scss file.


    .x-field-select.x-item-disabled .x-component-outer { @include filter(brightness(50%));
    }


    Since updating I now get the following...
  7. Since itemTpl doesn't hold the loop which actually iterates over the datastore you will need to setup a custom template function to hold and retrieve this information.


    itemTpl : new...
  8. I know in /navigation/Bar.js line 645 the following function produces incorrect behavior when the defaultBackButtonText is blank.



    /** * Returns the text needed for the current back button...
  9. I solved this issue by using Ext.createSequence to hook into the Ext.List.prototype.initComponent which is right after this.tpl gets created. I think loop through this.tplFunctions (defined by you)...
  10. Alternative Loading Methods:

    One of the methods I've done to try to simplify the logic inside of each component / view is to modify all of my models with debug logic.

    Inside of my...
  11. Replies
    14
    Views
    1,072
    If you are cloning the fields why not just extend combobox into a custom class. In doing this scope works so much better and works as I've shown above.
  12. Replies
    14
    Views
    1,072
    Yea I wasn't sure where you were putting your combo code so I never knew what scope you were able to get. If you are just placing the code inline on a page then you could do something like this:

    ...
  13. Replies
    14
    Views
    1,072
    listeners: {
    load: this.onStoreLoad,
    scope: this
    }
  14. Replies
    14
    Views
    1,072
    the listeners object can take a scope attribute so that when your load function is called it can be given the scope of the parent class enabling you to then reach out to the combo. It really depends...
  15. Replies
    12
    Views
    1,008
    Are you trying to call a form load operation to reload all of the values in a given form?
  16. Replies
    14
    Views
    1,072
    That would be a function which either uses the ref attribute on combo to look it up and return it, a this.getComponent(#) call, or a form.getForm().findField(FIELDNAME) call. Just a stub function...
  17. Replies
    14
    Views
    1,072
    xtype: 'combo',
    store: new Ext.data.JsonStore({
    url: 'includes/get-combo.asp',
    autoLoad: false,
    root:'Records',
    totalProperty: 'RecordCount',
    ...
  18. Replies
    12
    Views
    1,008
    http://dev.sencha.com/deploy/dev/docs/source/Container.html#method-Ext.Container-doLayout
  19. Check out the source code to see how you can use enableBubble and getBubbleTarget. At it's most basic level using enableBubble will just fire the event on ownerCt; so if you have every window added...
  20. You could setup an event on App.publisherRevenueShareEdit.window which bubbles up all the way to App.publisher.window. From my understanding if you add a window to a component things like event...
  21. Yes I'd put the Ajax inside of that handler.
  22. http://rowactions.extjs.eu/
    Using row actions to capture the clicks and then using Ext.Ajax to make the POST to your URL with the values required and on return populate a new window with the data...
  23. I think its el.dom.style
  24. Replies
    10
    Views
    11,883
    Nevermind my Ext version was lying to me.
  25. Replies
    10
    Views
    11,883
    I can't seem to find this Class anywhere. Could someone point me towards what I need to call / include in order for Ext.sql.SQLiteStore to work.
Results 1 to 25 of 58
Page 1 of 3 1 2 3