Pular para o conteúdo
Menu
Esta pergunta foi sinalizada
3 Respostas
11169 Visualizações

I have created a custom rating widget in openerp using Rateit.

But the widget is always editable, How can i make it editable only when i click 'Edit' button and How do i know it is in readonly mode?

xml

<field name="rating" widget="rating"/>

js

instance.my_module.Rating = instance.web.form.FieldChar.extend({
        template : "rating",
        init: function(field_manager, node){
            this._super.apply(this, arguments);

        },

        start: function() {

            var self = this;

            $('#rateit').rateit({
                value: 0,
                resetable: false
            });
        },
    });

Avatar
Cancelar
Autor Melhor resposta

Finally i got it working, here is my code

start: function() {

            var self = this;
            this.field_manager.has_been_loaded.done(function() {
                $('#rateit').rateit({
                    value: 0,
                    resetable: false
                });
                self.field_manager.on("change:actual_mode", self, self.check_actual_mode);
                self.check_actual_mode();
            });

 },
 
 check_actual_mode: function(source, options) {
    var self = this;
    if(self.field_manager.get("actual_mode")=='view'){
        $('#rateit').rateit('readonly',true);
    }
    else {
        $('#rateit').rateit('readonly',false);
    }
}

Avatar
Cancelar
Melhor resposta

please Does anyone has the solution of this?

Avatar
Cancelar
Melhor resposta

Hi Sajad,

I have created a widget but with out clicking edit button i am able to give input to it. I tried to use your code but it tells me rateit method not found. What to give inside rateit ?.

Please help me i am struck 

Avatar
Cancelar
Publicações relacionadas Respostas Visualizações Atividade
2
fev. 24
1413
0
abr. 23
4755
1
mai. 19
4380
0
mar. 15
4806
0
dez. 24
1277