Search Type: Posts; User: whodat

Page 1 of 5 1 2 3 4

Search: Search took 0.07 seconds.

  1. Replies
    3
    Views
    767
    Hi,

    I'm trying to disable a ComboBox based on a RadioGroup button being checked. I've seen the threads on Ext.getCmp('combo_id').disable() not working as well as the...
  2. Replies
    23
    Views
    7,139
    or


    chmod 755 ExtDesigner-1.0.0-linux-installer.bin
    ./ExtDesigner-1.0.0-linux-installer.bin
  3. Yes you can page locally on the client instead of server side paging. I used Condor's extension to achieve this. He built a ext js 2x and 3x version
    ...
  4. Some of us had no choice.. :DBecause my client didn't want to wait.
  5. Replies
    69
    Views
    20,723
    I posted my solution on page 2. I was able to get this to selectAll or checkAll unnoticeably for thousands of rows. Though my largest dataset was around 8000 paged locally. I didn't see any...
  6. Replies
    69
    Views
    20,723
    What do you consider to be a large data-set?
  7. Replies
    69
    Views
    20,723
    I've implemented the check/select all for the grid

    Method added to the class



    checkAll: function(){
    var i=0;
    this.clearSelections();
    for(i=0, it =...
  8. Replies
    1,023
    Views
    364,199
    Thanks Saki, I'll take a look tomorrow when im back in the office
  9. Replies
    1,023
    Views
    364,199
    Hmm.. it works on your demo but I'm wondering why it doesn't work.

    Does the trigger call anything related to the store, i.e. reload? I'm using a PagingStore which is local paging..

    I'm wonder...
  10. Replies
    1,023
    Views
    364,199
    Sorry didn't finish my sentence. But when clicking the [X] trigger, nothing happens for me. I have to remove the actual text to remove the filter.

    And yes it filters by dates
  11. Replies
    1,023
    Views
    364,199
    Saki,


    Great plugin like most of your plugins. I got this plugin to work with a grid which pages local.

    I have 2 questions.

    1) Do I have to implement the [X] "clearing" feature to clear...
  12. Replies
    2
    Views
    870
    What does your store instantiation look like?
  13. Replies
    2
    Views
    682
    Saki has something similar called a RecordForm extension.. I haven't used it, but I accomplished something very similar.

    http://recordform.extjs.eu
  14. Replies
    113
    Views
    46,891
    This extension is used for local paging. With the PagingStore, you query the db and get all of the data and not the requested pageSize. The previous and next calls will get the next request...
  15. I processed the submission in the processFormSubmission. I had a command object where the names of Ext form fields match the variables in the command object. They are binded and I perform...
  16. Replies
    5
    Views
    1,049
    Have you taken a look at the TabPanel's add method.

    You're calling add but what does add take as a parameter? An Ext Component, but from your add method, it is very not clear what type of...
  17. Replies
    5
    Views
    1,049
    It would be better if you showed your TabPanel code.

    You have a reference to your TabPanel, call it's add method and add the new Search Panel created from clicking the 'Add' Tree Node and make...
  18. You didn't have to do the include? But call the


    new JSONSerializer().exclude("*.class").deepSerialize(wrapper);
  19. Its was for a combo, so I didn't need the totalProperty, but basically you need to design your Java Class to contain what you need

    quick example of mine


    class GridResults{
    private int...
  20. Maybe this is your issue, shouldn't you call request.getParameter("sort") and not getAttribute()?

    I've implemented the AbstractFormController with the commandClass and without. You should be good...
  21. Where is the plants.xml file located? It needs to be on your local server for it to work.
  22. I've did this to populate my combos' stores

    In Java, I had an Object with a list for each combo



    class ComboStoreWrapper
    {

    private List<String> firstCombo;
  23. Replies
    7
    Views
    2,290
    Understood. So 1, you are correct. Don't give all of your combos created dynamically the same id/name. On the creation, give each a different name and id.

    2) When you call BasicForm.load() why...
  24. Replies
    7
    Views
    2,290
    So it sounds like you're trying to set the values of the combos..

    Is the data loaded in the store of the newly added combo(s) prior to you calling load?
    Also, how can you call load with the...
  25. Replies
    7
    Views
    2,290
    I think the row property he is referring to lets u know which row to update in your formPanel.


    I'm a little confused as to what you are trying to do ... Are you trying to load data into the...
Results 1 to 25 of 101
Page 1 of 5 1 2 3 4