nav_version = ‘beta64b.760’
This methods has these parameters:
- @param {Form} _form
- @param {Number} [_Xwindow]
- @param {Number} [_Ywindow]
- @param {Number} [_Wwindow]
- @param {Number} [_Hwindow]
- @param {String} [_dialogTitle]
- @param {Boolean} [_resizable]
- @param {Boolean} [_showTextToolbar]
- @param {String} [_dialogName] Non modal dialogs should have a name
- @param {Boolean} [_modal] default is true
except for the first the other can be not passed…
I have seen two problems, i think…
I have a form. Thisform has width 800 and height 400
If i call
svy_mod_showFormInDialog(nomeForm)
the opened form is little and i have to manually dimension it…Then it mantains the new dimensions…
If i call
svy_mod_showFormInDialog(nomeForm,100,100,800,400,‘Title’,false,false,‘DialogName’,true)
the width is correct, while the height of the form is always a more little then i requested…and it shows alwayt the vertical scrollbar and i have to manually dimension it for correct the height…then it mantains the correct dimension…
This is the first problem…
The second is that if i pass the window title, the first time the windows is opened it has like title the name of the form,only since the second time i open it it has the passed title…