Search Type: Posts; User: phamtranquocviet

Page 1 of 4 1 2 3 4

Search: Search took 0.03 seconds.

  1. Hi,

    I currently have 3 tabs at the top. Within each tab, I want to have a bunch of tabs at the bottom. A while back sencha web site has something like this in the demo section. You click a widget...
  2. I figured it out. Here is my new and working controller. Once lesson I learned: don't share store. It makes things complicated and may even be impossible to separate when submitting data.


    ...
  3. Hi,

    store.filter does not filter. My combo boxes always have both "Catechism" and "Vietnamese". I want the first combo to contain only catechism, and the second one to contain only "Vietnamese"....
  4. Thanks vietits. Will give params a try.

    Just curious. When you send data as records or array of records. How do you access on the server?

    thanks again.
  5. Firebug now shows the following output, but var_export($_REQUEST, 1) still shows no first name and
    last name.

    data Object { userId=0, firstName="Quyen", lastName="Nguyen", more...}

    email...
  6. I have a grid of users. At the bottom is a "Add User" button to add user. When clicked, a form pops up to enter user info (first, last name), and clicking "Add" inside the form submits info to server...
  7. Replies
    1
    Views
    214
    After so much pain and suffering, I found the following answer. You do not have to worry about the width of the td of the table layout. You only need resize the content of the td to your desired...
  8. Replies
    1
    Views
    214
    Hi,
    I have a tab panel (Ext.panel.Panel), which has a table layout. Each row has three cells. Each cell takes 1/3 of the tab's width. When the browser resizes, I resize the width of each cell like...
  9. This did the trick. Any better way to do this?



    copyFromGrid = Ext.ComponentQuery.query("#" + copyFromGrid)[0];
    Ext.each(copyFromGrid.columns, function(column, index) {...
  10. I have three grids: User, Role, and Workspace. Workspace is to model the one to many relationship between users and roles (one user can have many roles). When double clicking user's row, I want...
  11. Hello,
    Why do I get an empty array on the red line? I want the out put of the red line to be the same as the blue line. Thanks for your help.



    copyFromGrid = Ext.ComponentQuery.query("#" +...
  12. Replies
    3
    Views
    585
    That works like a charm. Thanks, vietits.
  13. Replies
    3
    Views
    585
    Hi,
    I have a grid, which has a "Add User" button at the bottom. When clicking "Add User", a window pops up. When I click "cancel" button on the pop-up window for the first time, it closes fine. When...
  14. Replies
    2
    Views
    226
    I got it. I copied store/User.js to store/iip/adm/User.js. However, the declaration of my User.js class was still this:



    Ext.define("Iip.store.User", {
    extend: "Ext.data.Store",
    ...
  15. Replies
    2
    Views
    438
    Thanks vietits.
  16. Replies
    2
    Views
    226
    Hi,

    I encounter a weird issue in one of my views. If I use the line in blue, it works. However, when I use the line in red, it gives the following error. I need the line in red to work.

    c is...
  17. I still see this bug in 4.0.7 (open source version)
  18. Replies
    2
    Views
    438
    Why does adding the line in red below stops the application without giving any error in Firebug? Everything shows fine when taking that same line out. I am puzzling because Ext.panel.Panel, which is...
  19. that works like a charm. Thanks.
  20. That got rid of the error. However, the second cell in the first row (where I call createUserGrid()) shows text of a grid object, not a grid with rows and columns. How do I have a grid in a cell?...
  21. I want to have a table of 3x3 that looks like the following. I want it in a table so that I can control the position of the grid.

    Cell_1_is_empty Cell_2_is_a_grid ...
  22. That works. Thanks vietits.
  23. vietits,
    #acl is an item in my "Admin Console" view and is returned by function getMenu (in red), which gets an array (PHP code in green) from the server (in blue). I get it from the server to hide...
  24. vietis,

    The getViewClassName() getter function does not appear in Firebug. Therefore, the call in blue below throws this error "getViewClassName is not a function". However, Firebug clearly shows...
  25. You are right, panel (in this case using accordion layout) does not have click event. I changed "click" event to "expand" and "collapse" events, and it worked like a charm. Here is the new code:

    ...
Results 1 to 25 of 90
Page 1 of 4 1 2 3 4