Technical support This forum is closed.
Version 1.x > Technical support > Problem with Bizform View modes: 
User avatar
Member
Member
mmoohit - 9/8/2006 12:50:35 PM
   
Problem with Bizform
Hi,
I am using the Bizform to create the ContactUs page. But I am not able to add "Submit" and "Reset" buttons, by default is add the "OK" Button. Even I am not able to change the value of the "OK" button. Please help me out to resolve this issue.
Thanks
Mohit Kulshrestha

User avatar
Guest
admin - 9/11/2006 8:47:43 AM
   
Re: Problem with Bizform
Hello,

thank you for your message. Unfortunately, the current version doesn't support custom buttons.

Best Regards,

User avatar
Member
Member
mmoohit - 9/11/2006 9:12:32 AM
   
Re: Problem with Bizform
Hi,

Now i can change the text of the "OK" button by using the following line of code :

Bizform1.BasicForm.btnOK.Text = "Submit";

even i can add a button control by using the following line of code :

Bizform1.Controls.Add(object of control);

but the new control is not align with the "Submit" button. new control is added after the table created by the BizForm1. Is there any way to access that row so that i can add the control where i want.
OR
Can i modify the BasicForm?

Thank
Mohit Kulshrestha

User avatar
Guest
admin - 9/11/2006 9:36:29 AM
   
Re: Problem with Bizform
Well, if you got so far, you could possibly try this:

Bizform1.BasicForm.btnOK.Parent.Controls.Add(yourcontrol);

It should add the control after the OK button.

Best Regards,

User avatar
Member
Member
mmoohit - 9/11/2006 10:54:01 AM
   
Re: Problem with Bizform
Hi,
I tried this but it is not working.

I am writing this code in Bizform1_OnAfterDataLoad() . Value of "Bizform1.BasicForm.btnOK.Parent" is null in this function.

Thanks
Mohit Kulshrestha

User avatar
Guest
admin - 9/12/2006 4:06:55 PM
   
Re: Problem with Bizform
Unfortunately, I have no other idea. You could only try to position the control using CSS styles like this:

#mycancelbuttonID
{
position:absolute;
left: 100;
top: 200;
}

Regards,