Search Type: Posts; User: khmurach

Page 1 of 5 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    3
    Views
    524
    Demo here http://ext4all.com/post/simple-extjs-wizard-with-card-layout
  2. Replies
    23
    Views
    5,899
    Multiple File Upload with progress
  3. Replies
    1
    Views
    4,448
    Multiple File Upload with progress

    38771
  4. Demo here http://ext4all.com/post/how-to-render-image-to-grid-field
  5. Problem is in combobox:
    In ExtJS 4.0.7 we can set combobox value by valueField, displayField or an object.
    In ExtJS 4.1.0 - only by valueField or displayField.

    Demos:...
  6. You should
    1. this.application.addEvents
    2. this.application.fireEvent


    //add event
    this.application.addEvents('UsersStoreLoaded');

    this.getUsersStore().on('load', function (store) {
    ...
  7. Do you have local rest service?
  8. > It also get the following error in Chrome.
    Your page on localhost calls to another domain - this is cross-domain request which is not allowed in Ext.data.Store.
  9. Use not string values:

    limitParam: 'false',
    pageParam: 'false',
    startParam: 'false',

    but boolean values:

    limitParam: false,
    pageParam: false,
  10. You should not use "renderTo" config for windows.
    Where are two way to show window:
    1. Create instance and call method "show()"

    var win = Ext.widget('window', {
    title: 'Simple...
  11. Your html element is not valid:


    <div id='container'><\div>

    valid version


    <div id='container'></div>
  12. You can listen plugin's events as other grid events.
    Demo hare http://ext4all.com/post/listening-rowedit-plugin-in-controller
  13. Use config


    renderTo: 'container'


    Demo here http://ext4all.com/post/how-to-render-gridpanel-in-html-element
  14. Code to remove params:


    proxy: {
    type: 'rest',
    pageParam: false, //to remove param "page"
    startParam: false, //to remove param "start"
    limitParam: false, //to remove param...
  15. Which url format for paging is accepted by your server side?
  16. Replies
    0
    Views
    1,463
    Simple Online ExtJS Code Editor
  17. Try this


    Ext.onReady(function () {
    var win = window.open('', 'form');

    win.document.write("<html><title>test form</title><body><form id='form' method='POST'...
  18. Replies
    3
    Views
    940
    Demo here http://ext4all.com/post/extjs-4-1-grid-infinite-scroll-in-mvc
  19. Use


    Ext.EventManager.addListener(window, 'beforeunload', function (e) {
    return alert('beforeunload');
    });
  20. Demo here http://ext4all.com/post/how-to-handle-an-event-of-javascript-window
  21. Try never use "id".
    Use "name" in form fields.
    Use "itemId" when you want to get component from its container:


    container.getComponent('itemId')
  22. Replies
    2
    Views
    1,369
    Try this http://ext4all.com/post/detect-iframe-load-event
  23. You have to many nested layouts. Try to simplify your viewport.
    How about http://ext4all.com/post/viewport-with-accordion-in-center
  24. Works fine for me. Demo here http://ext4all.com/post/render-afterrender-and-boxready-in-extjs-4-1
  25. Do you want to open browser window or Ext.window.Window?
Results 1 to 25 of 119
Page 1 of 5 1 2 3 4