Skip to Content
Menu
This question has been flagged
1 Reply
1907 Views

we open a special popup from a button with this code:

res = {  
'type': 'ir.actions.act_window',
'name': ('Dummy'),
'res_model': 'sale.order.line',
'view_type': 'form',
'view_mode': 'tree,form',
'view_id': False,
'target': 'new',
'views': [(tree_id, 'tree'), (form_id, 'form')],
'context': {
'default_product_ids': [self.id]
}
}

is it possible to overwrite the width of this popup? i just want to change the width for this single popup and not the global css for all this inline popups.
Avatar
Discard
Author Best Answer

is there no possibility to achieve this?

Avatar
Discard