Search Type: Posts; User: a.premkumar

Page 1 of 3 1 2 3

Search: Search took 0.02 seconds.

  1. Try using ext-all.js in you html file. this might help.

    Regards,
    Premkumar.
  2. Hi,

    If you use MVC pattern, then why can't you create a instance of controller and call the function?

    like this in you view:


    var control =...
  3. Hi,
    What is the tool you are working with to create the project? What is your ExtJS version? Please give more details so that the problem could be solved soon.

    Regards,
    Premkumar.
  4. Hi,

    I developed a similar dashboard thing just like what the link shows. I referred the Portal Demo example of Sencha site. Take a look at it. You may also get hold of the source code from github....
  5. I'll show you the threads, where this topic has been already discussed in detail.
    ...
  6. Hi Lewis,

    At first I was also searching for Sencha plugin to Eclipse. But later I dropped the attempt and started working by including the unpacked sdk folder to my web application's WebContent...
  7. Hi,

    Try configuring the proxy for each model other than in the store. It might work. Once I made it work that way. And to configure the association, its better to follow the below link.
    ...
  8. Even though it is possible, it is not recommended. Any way here is the example you asked for.



    <html>
    <head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />...
  9. Replies
    1
    Views
    133
    Here you will find the informations you need.

    http://www.sencha.com/forum/showthread.php?138165-How-to-report-a-bug

    Regards,
    Premkumar
  10. Replies
    8
    Views
    559
    If its within my knowledge, sure you can count on me. ;)
  11. Use loadmask.

    Place this code in your load button handler


    handler:function()
    {
    // To create and show loader
    var myMask = new Ext.LoadMask(myPanel, {msg:"Please wait..."});
    myMask.show();
  12. Replies
    4
    Views
    464
    Hi Andy,

    Sencha's Guide is best place to start with. There you would get the basic idea and understanding of classes and how to start your coding stuff. It would be difficult to follow at first...
  13. I am looking for the same answer too. Any one please help on this.
  14. Hi All,

    I have two models. They are related to each in hasMany-belongsTo manner.

    model ColumnState.js


    Ext.define('ExtMVC.model.ColumnState',
    {
    extend:'Ext.data.Model',
  15. Here is my situation. I have an application which needs its primary setting (an integer value) from html page. In 'index.html', I get the input and at the next page, I have included the app.js....
  16. Replies
    3
    Views
    268
    Yeah that's what I was talking about. I'm glad that I had been some help for you. Goodluck.:)

    Regards.
    Premkumar
  17. Thankyou veitits
  18. Then how could we do it? By adding delay time? or we have to define a callback?



    store.load({
    scope: this,
    callback: function(records, operation, success) {
    data =...
  19. When you refer to items, it always points to an array. So 'items.items[0]' is wrong. If the second items has index, then the first items will have index too.

    Please be more clear, What is...
  20. Replies
    8
    Views
    559
    Well I have worked on your code. Finally I came up with this. I have made some additions in your controller code. They are marked by arrows. It is not much but it works though. Give it a try.

    ...
  21. Hai All,

    I got the same problem. But I found the solution. Thought it would be helpful for some others.
    The solution is add 'requires' for the particular class names, which you would like to...
  22. Replies
    8
    Views
    559
    Hi,

    Do you want to update the tpl of 'workingspace' with selected record on 'selliste'? I am a bit confused here. Please state clearly what you need. Want to load another panel at center region or...
  23. Well I use 4.1.1. I tried that before replying thread. It worked for me though.:-?
  24. Have you tried <p> tag? Try placing it in front of the char where you think you need a line break. I think it works.

    Regards,
    Premkumar. A
  25. Overriding 'close' event means user defining his own way of operations before, during or after the close event occur. It won't trigger immediately before as you afraid. I have worked on it. Try that...
Results 1 to 25 of 56
Page 1 of 3 1 2 3