I have some actions on a form. When I view this form on the web I see the action bar at the top. However, it looks really naf; its got borders and default font. I would like to remove the borders etc.
No, I dont want to use Java applet option.
I have some actions on a form. When I view this form on the web I see the action bar at the top. However, it looks really naf; its got borders and default font. I would like to remove the borders etc.
No, I dont want to use Java applet option.
Subject: Customize Action Bar
Have you tried manipulating the Action Bar options of the view?
Subject: Customize Action Bar
It’s just a table in HTML – you can use CSS to modify its appearance.
Subject: RE: Customize Action Bar
I tried changing the settings (eg: borders etc) but these changes dont show up on the web.
How can manipulate the html using css? Where does the css go?
Subject: RE: Customize Action Bar
The action bar is the first table rendered in html so using javascript you get the handle on the first table in the onload event and then customize it.
This is from the sandbox which I have used
It is a simple copy and paste to get the action bar working or you can dig into the code to see how it works and customize it to get things like sub actions to function on the web.
Subject: RE: Customize Action Bar
I tried this and it works on some forms. However on other forms it does not work. In these cases the web pages has the action bar code before the transform statement. Therefore the js code gets executed too late. I put the transform statement right at the top of the page but still cant get it to come first.