Search Type: Posts; User: vela1606

Page 1 of 3 1 2 3

Search: Search took 0.02 seconds.

  1. To give you a bit of background...

    We are developing MatchaConnect a microORM for sencha that uses the existing Sencha Models and Ext.Direct to manage the database structure and all the CRUD...
  2. You are right... but what I am saying is if remoteFilter = true, the request should be:

    [{"property":"name","operator":"=","value":"Lisa"}]

    This way you can use the server side code to...
  3. I not sure if this is a bug or working as intended, but I think the store should send the filter operator if remoteFilter is true. This way you can correctly filter using your server code.

    here is...
  4. I would love to have this plugin fully supported. Currently I am using 'dataview' to achieve this.

    42192
  5. is your totalProperty correct?




    {
    "success": true,
    "results": 2000, <-------// this
    "rows": [ // ***Note:** this must be an Array
    { "id": 1,...
  6. This in my .htaccess did the trick :-) Thank you

    I've been using Ext.Direct for this app http://gaiaehr.org/demo/ (user: admin | password: pass) and with Ext.Direct now in Touch, a mobile...
  7. Can "Ext.Direct" be use on a Sencha Touch App running natively? Or only "JsonP" can be used?
  8. Replies
    5
    Views
    590
    $data = json_decode($_REQUEST, true)



    then to use "data 1" do $data['1']
    to use "data Testtraeger" do $data['Testtraeger']
    to use "data Vornat" do $data['Vornat']
  9. Replies
    5
    Views
    590
    sorry, don't understand what you are trying to achieve.

    is your code open source? can you post more of your code? or a link to a repository?

    are you using php function json_decode?
  10. Replies
    5
    Views
    590
    use the proxy extraParams property. like this....



    proxy : {
    type: 'ajax',
    url: 'includes/konto.php'
    extraParams: {
    data: records[0].data
    }
  11. Replies
    9
    Views
    686
    Try this...



    Ext.define('PMD.view.MyProjectsDlg', {
    extend: 'Ext.window.Window',
    height: 370,
    width: 638,
    title: 'My Projects',
    layout: 'fit',
  12. Replies
    5
    Views
    1,689
    Love IT! nice job... i'll be using this one :-)
  13. Replies
    2
    Views
    556
    post your code
  14. Replies
    3
    Views
    770
    this looks a bit cleaner :-)



    init: function() {
    this.control({
    '#mindControl' : {
    click: function() {
    var hidden =...
  15. when you reload the store the grid should refresh with the new data.

    I think the error is


    listeners: {
    select: function(combo, value,index){
    url: 'viewfaqcategorywise.action'...
  16. Replies
    8
    Views
    2,405
    add this... you have to remove the child panels border too


    border:false,
    defaults:{
    border:false,
    layout:'fit'
    },
  17. Replies
    3
    Views
    748
    Scott is right... add between '->' the first button and the second.

    If the button you already have is not docked to the panel (looks that way) adding "buttons" to the panel is you best option
    ...
  18. Replies
    9
    Views
    686
    layout : 'fit' to the window should do the trick if the height is the issue
  19. Replies
    3
    Views
    3,116
    Hi there,

    If you don't mind me asking, What kind of application are you working on?

    I am building an Open Source Electronic Medical Record. Is not using MVC but you can prob get a lot of ideas...
  20. Replies
    1
    Views
    574
    Ext.ux.grid.FormRowEditing - basically allow you to edit records inside the grid (just like the row editing plugin) using custom form items (fields). In fact, FormRowEditing is a modified version of...
  21. ok here is the github repo...
    https://github.com/Certun/Ext.ux.grid.FormRowEditing
  22. this is what you need?


    http://youtu.be/9fxb-gbi9d8

    if so, here is the code... I created this few weeks ago. It is a modified version of the Row Editing Plugin...
  23. Lines are losing custom styles when you try to redraw().

    here is a video

    http://youtu.be/Gua0GSzcxds




    {
  24. The Area chart is not showing along the Y axis (date field) ... I can see in firebug is the X axis is OK.
    I am using the same data for the Lines and the Area. So the data model is ok.
    The issue is...
  25. Replies
    8
    Views
    1,584
    you can archive the same results using hbox and vbox try using that
Results 1 to 25 of 63
Page 1 of 3 1 2 3