Search Type: Posts; User: skirtle

Page 1 of 5 1 2 3 4

Search: Search took 0.05 seconds.

  1. JSDuck is what Sencha uses to generate the documentation but it has all sorts of options to extract the information in other formats.

    I can't tell from your description where the line is between...
  2. You can't get to them in JS code.

    Perhaps it would help if you could explain why you need them?

    You can extract them by running a tool like JSDuck over the source code.
  3. It's a bug.

    I did a quick search myself and found 6 hard-coded 'x-' prefixes:


    me.addCls('x-unselectable');
    return (me.isGrouping ? Ext.fly(item) : this.el).down('table.x-grid-table');...
  4. No, not at all. I was merely suggesting that you take a look at the code in ext-all-sandbox-dev.js to get a better understanding of how to set baseCSSPrefix. Adding the two lines I suggested before...
  5. Why it isn't documented I have no idea but you can figure out how to use it by taking a look at the source code. The sandbox build (build/ext-all-sandbox-dev.js) is a pretty good place to start as it...
  6. You could try setting the CSS prefix. The default is 'x-' but it's configurable via Ext.baseCSSPrefix. You'd then set the relevant SASS variable:
    ...
  7. Try:


    {name: 'OBJECTID', type: 'string', mapping: 'succinctProperties["cmis:objectId"]'}
  8. Yes.
  9. I assume we're talking CORS here?

    The OPTIONS request is constructed automatically by the browser, so you won't find any ExtJS code for building it. As far as I can tell you can't put custom...
  10. Just take a look at the POST body in the debug tools of either Chrome or Firefox. I suspect you'll find you're posting garbage.

    I think you'll need to use jsonData instead of params. See:
    ...
  11. It depends on too many things for me to put a figure on it: browser, OS, hardware, other columns, etc.

    However, I would expect 500 rows to be a struggle. The only way to be sure is to try it...
  12. @rt.karthik87. Please see this earlier post:

    http://www.sencha.com/forum/showthread.php?148064&p=967292#post967292
  13. You could get a similar effect by putting the components in a different column of your tree but there's nothing to support injecting them into the treecolumn itself. I've not seen any UX to do that....
  14. http://www.sencha.com/forum/showthread.php?264460-Scoping-CSS-reset-in-4.2
  15. Perhaps try a member function on your XTemplate? See the XTemplate docs for more details on member functions.

    http://docs.sencha.com/extjs/4.2.1/#!/api/Ext.XTemplate

    Failing that, maybe you...
  16. Replies
    11
    Views
    267
    Follow the link in my first post.
  17. Replies
    11
    Views
    267
    How does what you want differ from the demo I suggested?

    43981
  18. Replies
    11
    Views
    267
    You'll need to provide more information. How does what you want differ from the UXs suggested? Could you do a mock-up picture of what you're trying to achieve?
  19. Thinking about it a bit more, what I did was for a checkbox selection model rather than a checkbox column. The code for checkcolumn is quite short, overriding it to handle disabling the way you need...
  20. I had to do something similar. The approach I took was:


    Added a beforeselect listener to the selection model that returns false for the disabled rows.
    Added a beforeitemmouseenter listener to...
  21. It depends on precisely what you want but pass the text through some combination of Ext.util.Format.nl2br and Ext.util.Format.htmlEncode, perhaps wrapped in a PRE tag or the CSS equivalent.

    e.g.:...
  22. Replies
    11
    Views
    267
    Another UX that might help you to achieve this:

    http://www.sencha.com/forum/showthread.php?148066

    One of the demos puts a combobox in a grid column's header in place of the text.
  23. Windows are implicitly rendered in the middle of the viewport when they are shown, most components (including panels) are not. I'm guessing this code is based on an example that uses an...
  24. When the checkbox is clicked it calls the handler function and then updates its dirtyCls. In this case the handler function is causing a grid refresh, which destroys the checkbox and creates a new...
  25. @Richie1985. I'll need more information to figure out what the problem is. If you can't provide a full test case could you at least post the config for the column? The full stacktrace, with line...
Results 1 to 25 of 120
Page 1 of 5 1 2 3 4