Re: Tool Tips, posted by Grant Jeffcote on Tue Nov 28 22:12:13 2006
|
Stefan Ritt wrote: |
Grant Jeffcote wrote: | What will the configuration line be? |
If you have
MOptions item = value_1, value_2
you can do a
Tooltip value_1 = text |
Thanks Stefan,
When implemented there seems to be a finite number of characters that are visible under a tool tip, is this an OS defined limit or something that can be changed? |
Re: Tool Tips, posted by Stefan Ritt on Wed Nov 29 13:42:14 2006
|
Grant Jeffcote wrote: |
Stefan Ritt wrote: |
Grant Jeffcote wrote: | What will the configuration line be? |
If you have
MOptions item = value_1, value_2
you can do a
Tooltip value_1 = text |
Thanks Stefan,
When implemented there seems to be a finite number of characters that are visible under a tool tip, is this an OS defined limit or something that can be changed? |
ELOG itself has a limit of 256 characters, but that can be changed easily. I found that Mozilla Firefox only showed 70 characters and then three dots ("..."), while Internet Explorer showed all 256 characters, wrapping words if necessary. So it strongly depends on the browser. |
Re: Tool Tips, posted by Grant Jeffcote on Wed Nov 29 22:44:15 2006
|
Stefan Ritt wrote: |
Grant Jeffcote wrote: |
Stefan Ritt wrote: |
Grant Jeffcote wrote: | What will the configuration line be? |
If you have
MOptions item = value_1, value_2
you can do a
Tooltip value_1 = text |
Thanks Stefan,
When implemented there seems to be a finite number of characters that are visible under a tool tip, is this an OS defined limit or something that can be changed? |
ELOG itself has a limit of 256 characters, but that can be changed easily. I found that Mozilla Firefox only showed 70 characters and then three dots ("..."), while Internet Explorer showed all 256 characters, wrapping words if necessary. So it strongly depends on the browser. |
Thanks, we use Internet Explorer in service but I tested using Mozilla (hence above).
I'd really like to be able change the limit to more than 256 characters, is this simply a configuration parameter or a code change? |
Re: Tool Tips, posted by Stefan Ritt on Thu Nov 30 20:49:56 2006
|
Grant Jeffcote wrote: | Thanks, we use Internet Explorer in service but I tested using Mozilla (hence above).
I'd really like to be able change the limit to more than 256 characters, is this simply a configuration parameter or a code change? |
It is a code change. I increased it to 10000 chars in revision 1766, it will be contained in the next release. |
Re: Tool Tips, posted by Grant Jeffcote on Thu Nov 30 22:07:31 2006
|
Stefan Ritt wrote: |
Grant Jeffcote wrote: | Thanks, we use Internet Explorer in service but I tested using Mozilla (hence above).
I'd really like to be able change the limit to more than 256 characters, is this simply a configuration parameter or a code change? |
It is a code change. I increased it to 10000 chars in revision 1766, it will be contained in the next release. |
Thx Stefan, I can write a book in there now! ;o)) |
Re: Preset reply date to nothing, posted by Stefan Ritt on Tue Dec 12 15:45:48 2006
|
> How do I preset the reply date to an empty box(es)?
>
> In 2.5.x it worked as
>
> Preset on reply Plan Date = ""
>
> gave me an empty date, which is what I wanted. Now in 2.6.3 I get some date in there (...1969) and have to
> manually set it to empty again ?
>
> Thanks
I fixed that in SVN revision 1777 again, so it will be included in the next release. |
Chinese language files updated, posted by Exaos Lee on Wed Jan 10 22:54:56 2007
|
As the attachment.
Sorry for no update long time. |
Re: Addition of a Print CSS, posted by Stefan Ritt on Tue Jan 16 21:13:42 2007
|
Ian MacDonald wrote: | Is there any way to change the the embeded style sheet reference to allow a seperate style sheet for printing ?
Default config:-
<link rel="stylesheet" type="text/css" href="default.css">
Would like to configure to :-
<link rel="stylesheet" type="text/css" href="default.css media="screen">
<link rel="stylesheet" type="text/css" href="print.css" media="print">
Thanks |
I implemented your suggestion. You can use now
CSS = default.css&screen, print.css&print
The new code is in SVN revision 1782 and will be contained in the next release. |