Search Type: Posts; User: hjones

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. I was seeing the same warning message and lack of rendering when using a 'border' layout in my panel.
    I have a simple Viewport with just the single Panel added to items.
    Then my panel has a border...
  2. You need to override the Combo's onExpand method and replace the BoundListKeyNav implementation with one thats Grid or Tree friendly.
  3. Replies
    5
    Views
    1,198
    Have a look here: http://www.randelshofer.ch/treeviz/ for a Java example and I think the source is available.

    Packing arbitrary circles within a larger circle is non-trivial...for a paper that...
  4. Amazed me that this is still broken in 4.1.2.
    Here's a fix...



    Ext.define('Ext.data.proxy.Server', {
    override: 'Ext.data.proxy.Server',

    getParams: function(operation) {
    ...
  5. I think at some point soon you need to clean up the help (which I like) but add some better validation and feedback.

    A specific example would be: sencha app upgrade -p ext

    I've been having...
  6. Yup...looking good in 190. Thanks....big improvement over earlier builds.
  7. I wanted to play with a custom theme so I followed the instructions here...

    http://docs.sencha.com/ext-js/4-1/#!/guide/command_theme

    ...to create a new theme in my generated application.
    ...
  8. So I think I found the problem...

    Specifying the sdk option in the sencha.cfg doesn't appear to work.
    It DOES use the path there as my generated apps appear to get all the right ext files from...
  9. Here's some more detail...



    Huws-MacBook-Pro:testapp huwjones$ pwd
    /Users/huwjones/testapp


    Huws-MacBook-Pro:testapp huwjones$ sencha --debug app refresh
    Sencha Cmd v3.0.0.181
  10. Don,

    I installed build 181, updated my path and tried to upgrade my previously generated apps (generated using 141).
    I'm getting this output and errors...



    sencha app upgrade
    Sencha Cmd...
  11. The NullPointerException I was seeing with build 141 while doing a 'sencha app build' immediately after generating the raw MyApp has gone - yay!...but it doesn't appear to have done the equivalent...
  12. After trying the previous build systems I can say that Cmd v3 is a huge step in the right direction. Keep going.

    I've got some feedback on the generated ExtJS app and an exception I can't get past...
  13. Replies
    36
    Views
    8,350
    I haven't used it myself and the last update was 8 months ago but here's code for a Maven plugin that builds ExtJS 4.x projects.

    https://github.com/ffrr/extjs-maven-plugin
  14. You can't stop this kind of non-persistent XSS - at least thats my understanding and has been explained many times in this thread.
    I'm talking about persistent XSS - a user being able to get that...
  15. Has any progress been made on this front?

    I am considering solving the problem in grids by doing the following at the Field level using the convert functionality.



    Ext.data.Types.AUTO = ...
  16. The link to a Grails implementation (by Mike Cantrell) on the first post of this thread appears to be no longer active.

    http://mcantrell.wordpress.com/2008/...ds-and-grails/

    Does anyone have...
  17. I am glad someone else had the same idea...when the grid has less than the paging size of data then don't show the paging toolbar...makes for a much cleaner UI that auto-magically grows.

    I'm doing...
  18. This is a great plugin...I'm using it with hierarchicalColMenu: false.

    When the user clicks on the header menu and on the Columns option ALL the checked menu items underneath get checked...with no...
  19. Sorry...I realize this is probably not in the right forum (can it be moved?)

    Ext.FlashComponent.EXPRESS_INSTALL_URL and expressInstall config only deals with the Flash upgrade state, i.e. Flash...
  20. Just wanted to add a comment here that might help people trying to set revertInvalid on a Grid column editor.

    We were using the shorthand,


    editor: {
    xtype: 'textfield',
    ....
    ...
  21. Ext version tested:

    Ext 3.2.0


    Adapter used:

    ext
    [ ]yui
    [ ]jquery
  22. Replies
    2
    Views
    947
    I don't think it is doing a JSON encode in the provider.

    The encodeValue function are converting the state object(s) in to an encoded string format that isn't JSON. The resulting string is escaped...
  23. http://www.sencha.com/forum/showthread.php?84278-validate-problem-of-a-gridpanel-as-a-form-item&highlight=form+grid+valid
  24. Make sure you have the idProperty config property on your reader/store.
    If you don't sent this up then the record will auto assign an id and set phantom = true.
    Here's a comment from...
  25. Replies
    1
    Views
    554
    I'm setting a proxy in the store like this...



    proxy : new Ext.data.HttpProxy({
    api: {
    read : ...
    update : ...
    },
    listeners: {
Results 1 to 25 of 33
Page 1 of 2 1 2