Search Type: Posts; User: slemmon

Page 1 of 5 1 2 3 4

Search: Search took 0.06 seconds.

  1. Replies
    1
    Views
    77
    I just tried with require() including Ext lib files and some I put ad hoc in a directory for testing (also linked to it in my loader's path config so that the namespace'd classes would know where to...
  2. So, the example tree grid from the Sencha.com website works ok for you in Chrome, but your app does not, is that correct?
  3. The grid's store will pass up the sort information to your server and your server code will be responsible for passing back the sorted datasets. The server will need to be able to respond to the...
  4. Is it just the handling of the series itemmouseup event that you're struggling with at this point?

    Also, if you format the code in jsbeautifier and then wrap the code in code blocks using the #...
  5. I was hoping you might have an inclusive example that would show the issue. For example, the below example works using your plugin configs for the grid views when tested on 4.2.1 (released GA...
  6. ExtJS is not currently optimized to work on devices other than PC so you may see some idiosyncrasies like this on other platforms. Touch is the framework targeting mobile platforms.
  7. Replies
    1
    Views
    49
    I haven't tested it, but once you set the step what about doing chart.redraw() afterwards?
  8. Replies
    1
    Views
    30
    On what version of ExtJS are you seeing the issue?
  9. Have you tried the same chart with 4.2.1 (just released today) to see if the rendering bug has been fixed in a version since 4.1.3?

    If the issue still persists can you provide a test case that...
  10. Thanks for the report! I have opened a bug in our bug tracker.
  11. ExtJS is not currently optimized to work on devices other than PC so you may see some idiosyncrasies like this on other platforms. Touch is the framework targeting mobile platforms.
  12. One thing you can do is define a store using Ext.define() and in the definition give the store class an alias like - alias: 'store.mystore'.

    Then when you instantiate the combos you can use a...
  13. Try using boxready instead of afterrender:



    Ext.create('Ext.panel.Panel', {
    title: 'Choose a future date:',
    width: 200,
    bodyPadding: 10,
    renderTo: Ext.getBody(),
    items:...
  14. Not sure why you're seeing that scroll behavior when removing a component from a parent container. Do you have a code snippet that demonstrates the behavior?
  15. How is it in 4.2.1 (released GA today)?

    Below is what I found in 4.2.1 and it looked like it worked ok:


    var myData = [
    ['3m Co',71.72,0.02,0.03,'9/1 12:00am'],
    ['Alcoa...
  16. cache_bypass is not sent or the value is not sent with it?
  17. I don't believe the column has a reference to the tooltip itself for you to grab. It's configured with data-qtip as an attribute on the action image is all.
  18. With ExtJS 4.x you can use Ext.define() to make re-usable classes. Those classes can extend other existing classes or stand alone and can then be instantiated in your application with each instance...
  19. What if you wrap the loop with Ext.suspendLayouts() > Ext.resumeLayouts(true) ?
  20. Replies
    1
    Views
    51
    You might post the Bryntum question here:
    http://www.bryntum.com/forum/
  21. You should be able to use the series' renderer config. Here's an example of it at work:
    http://docs.sencha.com/extjs/4.2.0/extjs-build/examples/charts/BarRenderer.html
  22. Replies
    1
    Views
    21
    Is your Users.json file in the data folder?
  23. I'm not seeing a public method to get the loaded range, but you might look at bufferedRenderer's getViewRange() method to get some ideas.
  24. Perhaps perserveScrollOnRefresh?
  25. Replies
    1
    Views
    134
    I've not seen a UX for that myself, but did put in a feature request a while back for that addition to the Ext framework.
Results 1 to 25 of 115
Page 1 of 5 1 2 3 4