RE: [Axapta-Knowledge-Village] Radio buttons

2004-12-07 Thread Sonny Wibawa Adi
Hi, Morris Mendoza, I don't know what form you exactly want to made. But, try this: 1. create a new form 2. override init method. public void init(){ FormRadioControl fc; ; super(); fc = element.design().addControl(FormControlType::RadioButton,"MyRadio"); fc.add('asd'); fc.add('adassd');} 3.

RE: [Axapta-Knowledge-Village] Radio buttons

2004-12-05 Thread Peng Qing Hua
Hi, As far as I know, developer cannot directly use radio buttons. We have to create a enum data , and then specify your radio button to this emun. The radio button's label is the emun item's label. Best Regard! Andy. Peng Qing hua -Original Message- From: Morris Mendoza