Search Type: Posts; User: KJedi

Page 1 of 5 1 2 3 4

Search: Search took 0.03 seconds.

  1. No, because model being submitted doesn't have fields with structured data like in your input. I think the only way is to do something about DataWriter that creates the structure to be written and...
  2. Mitchell is right. XSS should be filtered out on the server or escaped on the client. While ExtJS offers escaping on the client, I'm advocating for filtering on the server. Ideally - at your...
  3. Replies
    3
    Views
    148
    Hi Dennis,

    Did you try listening to 'check' event mentioned here: http://dev.sencha.com/playpen/docs/output/Ext.form.Checkbox.html#event-check
  4. Replies
    8
    Views
    2,152
    I've installed it previously, but now can't find SDK for linux!
    What is the reason for discontinuing the support for linux?
  5. I confirm this. Not sure this has anything to do with the card layout. I think Sencha guys use macs and iphones and simply ignore this problem which is already there for 1.5 years.

    Not sure how to...
  6. I have the same issue. Cordova works fine, but all phonegap plugins must be ported, so you have to stick to Phonegap 1.4.1.
    I think, problem with Phonegap is in Sencha as well, because it has some...
  7. Replies
    3
    Views
    719
    I've just tested this on mac mini 2.4 core 2 duo with 2 GB memory.
    Yes, it's not brand-new, but this is only tab switching!!!!
  8. Replies
    3
    Views
    719
    Rendering is slow. You cannot make it faster.
    What's going on there? AJAX query when you switch the tab?

    I just think that you there use brand-new Macs and do not notice your apps are def slow on...
  9. Replies
    11
    Views
    1,985
    Well, segmented button is a bit overkill... BU I will go this way if I don't find a different one.

    Mitchell, pressedCls is a class that Sencha adds to the button element when user clicks on it....
  10. Replies
    11
    Views
    1,985
    Hi, in ExtJS we have enableToggle=true and pressed=true with setPressed/getPressed.
    Is there anything similar in Sencha Touch?

    How can I emulate this?
  11. Replies
    10
    Views
    2,279
    I can listen to the resize event. But I need to know how can I resize the textarea itself correctly. Based on that I can resize the container - add margins or paddings, that is not a problem.

    I...
  12. Replies
    10
    Views
    2,279
    OK, another question - how to autogrow the textarea? :) How do I measure the height I should set to the textarea?
    I saw in ExtJS there is a grow config option. How does that work?
  13. Mitchell, I've set it to false, just to try it out - the height of dataview is still zero. I need some way to force it occupy all space it needs.

    But solution from Jamie is much better. I'm using...
  14. Jamie,

    Cool solution! When the data in the store is updated or I bind another store, is the toolbar removed or re-rendered? Should I re-create it after store updates?
  15. Hi,
    I have a container. In it I have another container with 2 buttons. And underneath - dataview with a lot of data. I want to set scrollable:true to the parent container and make those two (inner...
  16. Replies
    10
    Views
    2,279
    Thanks. Will try that. Actually I was hoping just to set the height of the textarea and make the parent container adjust it's height :) But as far as I see, this is not possible...
  17. I'd propose to:

    Define a proxy for Event model that has URL which gives you detailed information about the event
    Use
    Event.load(event.getId(), function (){//handeler here}) for getting full...
  18. Replies
    10
    Views
    2,279
    Hi,

    I have a chatting functionality in the application and I need to mimic the native auto-growing textareas e.g. in GTalk or Skype mobile apps.
    Interface is similar to this:
    32227

    How can I...
  19. Thanks a lot!!!!

    I don't think I could find it anywhere. Do I need to send back clientId only when it is being created or when it is simply updated as well?
  20. Replies
    4
    Views
    902
    Found what is wrong with the last example - if you want grouper, you need List, not Dataview.

    But the initial question still remains. Why it doesn't use the rendered string?
  21. Replies
    4
    Views
    902
    One more example of the stupid behavior:
    Model:

    Ext.define('CJ.model.Message', {
    "extend": "Ext.data.Model",
    config: {
    "proxy": {
    "type": "rest",
    "reader": {
    "type": "json",
  22. I tried creating the model using

    Ext.create('CJ.model.User', {data here})
    and using

    new CJ.model.User({data here})

    Nut nothing helps, error persists...
  23. Although Sencha does a good job with introducing different interesting things, I am completely dissatisfied by the support of existing users.
    In their blog post they say:

    As far as I understand,...
  24. Actual viewport is created.

    Could you please show the basic example where this is working?
  25. Hi, I'm saving a model to the server:
    Model:

    Ext.define('CJ.model.Deal', {
    "extend": "Ext.data.Model",
    config: {
    "proxy": {
    "type": "rest",
    "reader": {
    "type": "json",
Results 1 to 25 of 120
Page 1 of 5 1 2 3 4