Search Type: Posts; User: filippo.ferrari

Page 1 of 4 1 2 3 4

Search: Search took 0.03 seconds.

  1. My solution was switch to "beforeprefetch" event:



    me.getStorePianiInfiniteStore().on({

    beforeprefetch: function (store, operation, opts) {

    Ext.apply(operation, {
    ...
  2. I miss if there's an answer to this post...

    I've this problem with infinite scrolling, store:


    Ext.define('Pt.store.StorePianiInfinite', {
    extend: 'Ext.data.Store',

    requires: [
    ...
  3. Replies
    4
    Views
    387
    .down() search for an itemId, Your Viewport need to be referenced in the controllerer and then you can try:


    var MyViewport = this.getMyViewportRef();...
  4. Ext.getCmp() <- get id of component if known; not recommended; use query and itemId
  5. The same request found here: http://www.sencha.com/forum/showthread.php?254233-load-external-project
  6. Confirm!

    Serverside I perform 2 queries:

    A query with "count()" not limited to send back the total of records
    A query with the data set I need to send back records

    Both shares the where...
  7. "quickset" is the ability to add custom configuration property to a class.

    You can write eg. "verticalScrollerType" in the search box in the config panel. if "verticalScrollerType" is a property...
  8. Ok!

    I've made a non complete upgrade changing the value of "library base path", probably I expected to find there another property menaged with a combo with a name like "Extjs Version". Is...
  9. I've an Architect project that shows "mudules" in tabs, later I've created another Architect projet and I want to load, only on-demand if possible, initial views in a new tab of my "master app" and...
  10. I've a project in Architect started with 4.0 "support", left toolbox contains 4.0 classes, I've add 4.1.1 in library but how to switch to the 4.1 toolbox?
  11. Solved with me = this in initComponenet method of my grid:



    initComponent: function() {
    var me = this;


    and using me instead this!
  12. For me renderer is not executed in the scope of the grid but in the scope of the actioncolumn :-/
  13. This is the correct onTriggerclick override



    onTriggerClick: function(event) {
    this.fireEvent("ontriggerclick", this, event);
    },


    :">
  14. This thread helps me a lot but i've a problem with a reference error.

    I'm using 4.1.1 and Architect, this is my code

    In myView:


    {
    xtype: 'combobox',
    onTriggerClick:...
  15. + 1

    I haven't found yet a clear explanation how create a view with some controls (in a differet control class), ref correctly to my view parts (eg. form fields I need to control) and do it in the...
  16. Ok for every event listener select, focus etc. but not for 'beforerender'.
  17. I can't use it in my project, can you see what's wrong?



    refs: [
    {
    ref: 'editorCdc',
    selector: 'combobox[name="cdc"]'
    },
    {
  18. I think isn't supportet yet.

    I'm using setting combobox settings runtime getting the combo by ref and setting listConfig:



    refs: [
    {
    ref: 'editorChiamante',
    ...
  19. I've posted my request here: http://www.sencha.com/forum/showthread.php?223452-variable-value-with-label-in-Sencha-Architect
  20. I've the same request but my goal is using variables with url property to switch from test to production:



    Ext.define('Ch.model.Chiamate', {
    extend: 'Ext.data.Model',

    proxy: {
    ...
  21. /*
    this.getEditorChiamante().listConfig = {
    loadingText: 'Ricerca chiamante...',
    getInnerTpl: function() {
    return '<div class="combo-result-item">'+
    '<div...
  22. Replies
    1
    Views
    458
    In examples I've foud this to set up a combobox template with 4.x:



    listConfig: {
    loadingText: 'Searching...',
    emptyText: 'No matching posts found.', ...
  23. I think that's useful for custom methods in controller too...




    ... refs: [{ // A component query
    selector: 'viewport > #west-region > stationslist',
    ref: 'stationsList' }] ...
  24. Solved to setup for every element that is a container an height!
  25. I've make a new test in a 3.3.1 enviroment I've copied step by step the resource folder from 3.2.1 (to test if something concerning CSS) then the adapter folder and then ext-all-debug.js only when I...
Results 1 to 25 of 86
Page 1 of 4 1 2 3 4