Search Type: Posts; User: jimmifett

Page 1 of 4 1 2 3 4

Search: Search took 0.02 seconds.

  1. Does anyone have a simple example of an Ext.direct based TreeStore (with read and update api clauses instead of directFn) that uses CFQueryReader?

    I'm having the hardest time trying to get my...
  2. If my apps require it and set a certain flag, when I return the API, I inject a little snippet to the end of the API.



    /**
    * @output true
    */
    private void function useCSRF(){...
  3. Memory savings?
  4. Thanks Scott!
    That helped point me in the right direction!

    I add:


    if(record.phantom)
    { return '*'; }

    before the regular return in the override.
  5. First thing I tried :)

    Have done after insert call, inside an add listener on the store, and manually refreshing from console.
  6. After a store.insert(0, record), I end up like this:

    1 data1 data2
    1 data1 data2
    2 data1 data2
    3 data1 data2
    4 data1 data2
    etc.

    How can I get the rownumberer to reset after the insert?
  7. So the docs say:
    The url which the PollingProvider should contact with each request. This can also be an imported Ext.Direct method which will accept the baseParams as its only argument.

    Can...
  8. The op is correct, I'm testing a polling provider too in ext4.1.1, albeit with an ExtDirect function instead of a url, and I am getting similar. In fact, i'm getting worse:

    when calling...
  9. I found a solution that works excellently, overriding the remoting provider to add another base field to the json packet for every call without needing to rely on extraParams
  10. How can I get extraParams passed for store api crud operations other than only Read operations?

    Example, I have a string that i want to pass back to the server, in addition to the other...
  11. Replies
    2
    Views
    449
    Never mind... it just started working... :-?
  12. Replies
    2
    Views
    449
    I have a form with a 'store' config paramter that loads up my record nicely into my form. I change some data on the form, and would like to commit it back via the store's API (extdirect) 'update'...
  13. So, array vs named, which is the preferred methodology by ExtJS?

    With named, are all values required arguments?

    Do values not listed with the specified parameters (extra params) get passed as...
  14. Replies
    29
    Views
    3,647
    I'm not as positive with this one, but it could be due to your response not matching what was sent during the update. Service appears to have a different value.
  15. Replies
    29
    Views
    3,647
    First place to start, you need to clean up your code. You have several instances commas following the last item in an object declaration. In firefox and IE8, it's (sometimes) ignored, but in ie7,...
  16. Replies
    29
    Views
    3,647
    knowing is half the battle*

    *other 50% involves 25% red lasers and 25% blue lasers
  17. Replies
    29
    Views
    3,647
    If your respsone is the original from the first page in this thread, then your reader should be configured for root to be 'data', or your response should be changed to return an element named...
  18. Replies
    29
    Views
    3,647
    well there's your problem, your 'root' configs for your reader and writer are jacked.
    root should be the name of the property in the object that holds the array of row objects. in your case, it...
  19. Replies
    29
    Views
    3,647
    what does your store / proxy look like?
  20. Replies
    29
    Views
    3,647
    Now, i'm using Ext.Direct, with the API being set, so there is probably a little bit more in my stuff, but the idea is the same.

    Here's what I send:

    ...
  21. Replies
    29
    Views
    3,647
    as I tried, perhaps not very well, to explain earlier, the OP, as well as cezarszl, are both returning object literals instead of an array of object literals with a single object element.

    for...
  22. never mind, figured it out
  23. Replies
    29
    Views
    3,647
    I see the problem.

    You are getting back:



    {
    "data": {
    "url": "/rules/codebooks/1/",
    "description": "A codebook to capture events in the english...
  24. Replies
    29
    Views
    3,647
    What is being sent and what is being returned?

    Capture that with firebug or fiddler or something.

    Row editor expects back a row coming back, i believe with the data you sent (to reflect the...
  25. I have a form panel 200px wide with displayfields.
    I want the label aligned left, and the field aligned right.

    I've been fighting with it all morning, can someone please show me the correct way...
Results 1 to 25 of 82
Page 1 of 4 1 2 3 4