'From Pharo1.4a of ''16 June 2011'' [Latest update: #14090] on 22 October 2011 at 11:52:46 pm'! !MAContainerDecoration methodsFor: 'rendering' stamp: 'YanniChiu 10/17/2011 01:35'! renderButtonsOn: html html div class: 'buttons'; with: [ self buttons do: [ :each | html submitButton jqmInline; accessKey: each value first; callback: [ self execute: each key ]; text: each value ] ]! !