1. #1
    Sencha User
    Join Date
    Oct 2012
    Posts
    7
    Vote Rating
    0
    honeyandbee is on a distinguished road

      0  

    Default Unanswered: How to activate listeners in renderer function in a grid column

    Unanswered: How to activate listeners in renderer function in a grid column


    I am using extjs 4 and I have a grid which shows a field name Approval. Here I have showed checkbox that will be checked when the grid is loaded if the value is true. But if the dataIndex value is fault only the checkbox will appear. Now I want that if I click on unchecked checkbox it will do a action using listeners. But I am not being able to do it. Can anyone please help me on this ? My codes are given below :

    {
    text: 'Approval',
    dataIndex: 'approve',
    flex: 1,
    align: 'left',
    renderer: function(value, metaData, record, row, col, store, gridView){
    if(value == true) {
    return '<input type="checkbox" checked="true" />';
    }else{
    return '<input type = "checkbox" />';
    listeners: {
    this.approve();
    }
    }
    }
    }

    approve: function(){
    alert('hi');
    }
    Last edited by honeyandbee; 27 Nov 2012 at 10:08 PM. Reason: good view

  2. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,624
    Vote Rating
    434
    Answers
    3105
    mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of

      0  

    Default


    First, why not use Ext.ux.CheckColumn that comes with the downloaded zip?
    Mitchell Simoens @SenchaMitch
    Sencha Inc, Senior Forum Manager
    ________________
    http://www.JSONPLint.com - Source to lint your JSONP!

    Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
    https://github.com/mitchellsimoens

    Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/

    Need more help with your app? Hire Sencha Services services@sencha.com

    Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!

    When posting code, please use BBCode's CODE tags.

Tags for this Thread