I found out how to add a custom css without messing up my menu bar.  I
created an ARSystem.css file that included only the classes that I
want changed.  I added this to my Support Files for my application.
I was able to modify the td.BaseTableCell,td.BaseTableCellOdd  classes
to get it to show left or right borders for a cell.
I was hoping to do this using a table property so that the column
dividers would span the complete hight of the table.
Visually this is my desired result.  I have table calculations that
appear below the table and for each column.  It would be easier to see
which column totals are for which columns if the column divider
spanned the hight of the column, even if there is only one or two rows
of data with the table is able to display 20 or so rows.

Any other ideas?

Thanks,
James

On Apr 28, 4:32 pm, jham36 <[EMAIL PROTECTED]> wrote:
> I just did a test and attached the default ARSystem.css from the mid-
> tier server to my application without making any changes to it.  My
> top menu bar in the application got messed up.  It looks like it is
> trying to display 2 rows with Searches and Set to Defaults on the top
> row and Logout and Help buttons on the second row, but the second row
> is 75% cut off.  As soon ans the ARSystem.css is removed from the
> application, it returns to normal.
>
> On Apr 24, 10:56 am, Bradford Bingel <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
> > Looks like this is for a column divider, not a table border . . .
>
> > Let's try another option.  In the ARSystem.css file, create the following
> > new entry:
>
> >      td.border {
> >          border-width:  2px
> >      }
>
> > This assumes you have the ability to customize/change the class argument in
> > the desired <td> tag, as in:
>
> >      <table...>
> >        <tr...>
> >          <td class="border"...>
> >            .
> >            .
> >          </td>
> >        </tr>
> >      </table>
>
> > If you don't have that ability, you may want to experiment with the
> > "default" CSS settings:
>
> >      * {
> >          .
> >          .
> >          border-width:  2px
> >          .
> >          .
> >      }
>
> > If it doesn't exist, you may want to insert it into the ARSystem.css file
> > (but be prepared to back it out if it impacts too many elements):
>
> >      * {
> >          border-width:  2px
> >      }
>
> > -- Bing
>
> > Bradford Bingel ("Bing")
> > ITM3 Californiahttp://www.itm3.com/
> > [EMAIL PROTECTED] (email)
> > 925-260-6394 (mobile)
>
> > -----Original Message-----
> > From: Action Request System discussion list(ARSList)
>
> > [mailto:[EMAIL PROTECTED] On Behalf Of jham36
> > Sent: Wednesday, April 23, 2008 8:37 AM
> > To: [EMAIL PROTECTED]
> > Subject: Re: Custom css
>
> > Page 166 of the Mid Tier 7.0 guide says to modify:
>
> >  div.BaseTableBar div (column divider)
>
> > The ARSystem.css has this entry for that class, already specifying
> > border-left:
>
> > div.BaseTableBar div {
> >     top:0px;
> >     left:5px;
> >     width:1px;
> >     height:20000px;
> >     border-left:1px solid #a6a9ac;
> >     cursor:col-resize;
> > }
>
> > The only time I see a border in the table is when I select a row.  Any
> > changes I make to the css file seem to mess up the menu bar on the form.
> > Strange.
> > On Apr 23, 11:30 am, Bradford Bingel <[EMAIL PROTECTED]> wrote:
> > > Try adding the CSS "border-width" attribute for the referenced class, as
> > in:
>
> > > Classname {
> > > .
> > > .
> > >     border-width:  thin
> > > .
> > > .
>
> > > }
>
> > > Other possible values include "medium" or "thick" (depending on your
> > > preference).  You may also specific a precise width, as in:
>
> > >     border-width:  2px
>
> > > which is interpreted as a border width of 2 pixels.
>
> > > The border color may set with a related attribute, "border-color", as in:
>
> > >     border-color:  #669966
>
> > > This hexadecimal RGB color code will result in a grey-green border,
> > > but you are free to use any color code you wish, including the color
> > > names "green", "red", "black" . . . you get the idea.
>
> > > You also have the option of specifying unique display instructions for
> > > each border, using:
>
> > >     border-top-width
> > >     border-left-width
> > >     border-right-width
> > >     border-bottom-width
>
> > > Suggest you try the "border-width" and "border-color" examples shown
> > above.
> > > If there's still a problem or the table is not displaying quite as you
> > > want, there are PLENTY of other options we can try.
>
> > > -- Bing
>
> > > Bradford Bingel ("Bing")
> > > ITM3 Californiahttp://www.itm3.com/
> > > [EMAIL PROTECTED] (email)
> > > 925-260-6394 (mobile)
>
> > > p.s.  For those CSS purists out there (and you know who you are) may
> > > point out you can also define each cell border width and color using
> > > the "border-width", "border-color", or simply the "border" attribute,
> > > with some unique argument specifications.  Didn't want to get into all
> > > that detail here.
>
> > > -----Original Message-----
> > > From: Action Request System discussion list(ARSList)
>
> > > [mailto:[EMAIL PROTECTED] On Behalf Of jham36
> > > Sent: Tuesday, April 22, 2008 10:26 AM
> > > To: [EMAIL PROTECTED]
> > > Subject: Re: Custom css
>
> > > I simply want to show column dividers (borders) on a Remedy table
> > > field, between the columns.
>
> > > Thanks,
> > > James
>
> > > On Apr 22, 1:09 am, Bradford Bingel <[EMAIL PROTECTED]> wrote:
> > > > You can change (or add) CSS elements to alter how your pages appear.
>
> > > > What, exactly, do you want to change?  (Perhaps we can help with the
> > > > CSS
> > > > entries.)
>
> > > > Also, can you provide the HTML code (right click, View Source) of
> > > > the page you want to alter?
>
> > > > -- Bing
>
> > > > Bradford Bingel ("Bing")
> > > > ITM3 Californiahttp://www.itm3.com/
> > > > [EMAIL PROTECTED] (email)
> > > > 925-260-6394 (mobile)
>
> > > > -----Original Message-----
> > > > From: Action Request System discussion list(ARSList)
>
> > > > [mailto:[EMAIL PROTECTED] On Behalf Of jham36
> > > > Sent: Monday, April 21, 2008 12:55 PM
> > > > To: [EMAIL PROTECTED]
> > > > Subject: Custom css
>
> > > > Has anyone used custom css on the web?  I am trying to modify the
> > > > display of a table field in an application.  I took the system
> > > > default ARSystem.css from the mid-tier server and modified that and
> > > > added it to the Support Files for my application under
> > > > standard/stylesheets
>
> > > > The Remedy documentation for what needs to be changed it a little
> > > > blurry.  I want to be able to view column or cell borders for the
> > > > data in the table (or the whole table).  The border shows for
> > > > selected rows by
> > > default.
> > > > I tried to add a border entry in these classes:
> > > > td.BaseTableCell,td.BaseTableCellOdd
> > > > also tried:
> > > > div.BaseTableBar div  (the documentaion points to this, but there is
> > > > already a left border that does not appear to be showing)
>
> > > > The only results I have seen are the Remedy menu bar showing two
> > > > rows with the second row cut off.
>
> > > > This is not critical, but would make my app look better with column
> > > > totals listed under the table.
>
> > > > Thanks,
> > > > James
>
> > > > ____________________________________________________________________
> > > > __
> > > > _____­_
> > > > ___
> > > > UNSUBSCRIBE or access ARSlist Archives atwww.arslist.orgPlatinum
> > > Sponsor:www.rmsportal.comARSlist:"Where the Answers Are"
>
> > > > ____________________________________________________________________
> > > > __ _____­____ UNSUBSCRIBE or access ARSlist Archives
> > > > atwww.arslist.orgPlatinumSponsor:www.rmsportal.comARSlist:"Where
> > > > the Answers Are"- Hide quoted text -
>
> > > > - Show quoted text -
>
> > > ______________________________________________________________________
> > > _____­_
> > > ___
> > > UNSUBSCRIBE or access ARSlist Archives atwww.arslist.orgPlatinum
> > Sponsor:www.rmsportal.comARSlist:"Where the Answers Are"
>
> > > ______________________________________________________________________
> > > _____­____ UNSUBSCRIBE or access ARSlist Archives atwww.arslist.org
> > > Platinum Sponsor:www.rmsportal.comARSlist:"Where the Answers Are"-
> > > Hide quoted text -
>
> > > - Show quoted text -
>
> > ___________________________________________________________________________­­_
> > ___
> > UNSUBSCRIBE or access ARSlist Archives 
> > atwww.arslist.orgPlatinumSponsor:www.rmsportal.comARSlist:"Where the 
> > Answers Are"
>
> > ___________________________________________________________________________­­____
> > UNSUBSCRIBE or access ARSlist Archives atwww.arslist.org
> > Platinum Sponsor:www.rmsportal.comARSlist:"Where the Answers Are"- Hide 
> > quoted text -
>
> > - Show quoted text -
>
> ___________________________________________________________________________­____
> UNSUBSCRIBE or access ARSlist Archives atwww.arslist.org
> Platinum Sponsor:www.rmsportal.comARSlist: "Where the Answers Are"- Hide 
> quoted text -
>
> - Show quoted text -

_______________________________________________________________________________
UNSUBSCRIBE or access ARSlist Archives at www.arslist.org
Platinum Sponsor: www.rmsportal.com ARSlist: "Where the Answers Are"

Reply via email to