[tw5] Re: Possible to Combine Text from Two Fields into One?

2022-04-06 Thread James
Hi Springer,

I would like to combine the two strings (first_name and last_name) and 
concatenated to populate a third field (like "whole name").
Is there anyway to do that either using Set Var or any method?

On Thursday, 7 April 2022 at 04:38:57 UTC+8 springer wrote:

> James,
>
> Perhaps a bit more detail would help. Do you want to do a one-time action 
> where textual contents of two fields (like "first_name" and "last_name") 
> are concatenated to populate a third field (like "whole name"), which will 
> then become the field you use instead of those first two? (I assume you 
> want to combine text strings, rather than to add numbers together)
>
> Alternately: do you want a way to have something like a new field that 
> draws dynamically from two other fields (so that you can continue to update 
> "first_name" and see the result in the "whole_name" field (or template)?)
>
> The best solution depends on what you want to accomplish, and what your 
> workflow might be like going forward. (For many purposes, you could just 
> keep the fields distinct at the granular level, and just combine them in 
> any display or output situation that requires them to be seen together.)
>
> -Springer
> On Wednesday, April 6, 2022 at 9:59:08 AM UTC-4 James wrote:
>
>> Hi all,
>>
>> is that possible to combine the text of two separate fields into one?
>> or may be combine two variables into one?
>>
>> Thanks a lot.
>>
>> Best regards,
>> James
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/412ef5c6-6f55-4dd0-93fa-1b238bb22f6bn%40googlegroups.com.


[tw5] Re: Possible to Combine Text from Two Fields into One?

2022-04-06 Thread springer
James,

Perhaps a bit more detail would help. Do you want to do a one-time action 
where textual contents of two fields (like "first_name" and "last_name") 
are concatenated to populate a third field (like "whole name"), which will 
then become the field you use instead of those first two? (I assume you 
want to combine text strings, rather than to add numbers together)

Alternately: do you want a way to have something like a new field that 
draws dynamically from two other fields (so that you can continue to update 
"first_name" and see the result in the "whole_name" field (or template)?)

The best solution depends on what you want to accomplish, and what your 
workflow might be like going forward. (For many purposes, you could just 
keep the fields distinct at the granular level, and just combine them in 
any display or output situation that requires them to be seen together.)

-Springer
On Wednesday, April 6, 2022 at 9:59:08 AM UTC-4 James wrote:

> Hi all,
>
> is that possible to combine the text of two separate fields into one?
> or may be combine two variables into one?
>
> Thanks a lot.
>
> Best regards,
> James

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/e3de913d-666c-454b-a21e-29ca0b3010ean%40googlegroups.com.


[tw5] Re: Stylesheet question. I am trying to find the cause of the story river's top margin

2022-04-06 Thread Tyler Harris
Setting padding-top to 0 didn't work.

On Wednesday, April 6, 2022 at 6:08:14 AM UTC-5 Álvaro wrote:

> The story river doesn't have any margin between it and the top of viewport.
> If you are talking about the gap between the first tiddler in story river 
> and the top of viewport. It is caused by the `padding` of the story river, 
> you can remove it:
> ```
> .tc-story-river {
>   padding-top: 0;
> }
> ```
>
>
> El miércoles, 6 de abril de 2022 a las 9:23:00 UTC+2, thyl...@gmail.com 
> escribió:
>
>> Hello,
>> I am trying to find what the cause of the margin of the story river's top 
>> margin. Can't find it in any stylesheet.
>>
>> This is what I have tried in a custom stylesheet.
>> ```
>> section.tc-story-river {
>>   position: absolute; //position: fixed also has been tried.
>>   top: 0px;
>>   border: 1px solid black;
>> }
>> ```
>> But the CSS is not behaving the way I would expect. I looked at the all 
>> the parent containers and cannot find anything could causing the story 
>> river being pushed down.
>> Thanks.
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/bd3c6fee-a833-4dcb-8afb-1d624bac2e40n%40googlegroups.com.


[tw5] Possible to Combine Text from Two Fields into One?

2022-04-06 Thread James
Hi all,

is that possible to combine the text of two separate fields into one?
or may be combine two variables into one?

Thanks a lot.

Best regards,
James

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/532bf715-da2f-482d-acdd-1438eeddc6den%40googlegroups.com.


[tw5] Re: Stylesheet question. I am trying to find the cause of the story river's top margin

2022-04-06 Thread Álvaro
The story river doesn't have any margin between it and the top of viewport.
If you are talking about the gap between the first tiddler in story river 
and the top of viewport. It is caused by the `padding` of the story river, 
you can remove it:
```
.tc-story-river {
  padding-top: 0;
}
```


El miércoles, 6 de abril de 2022 a las 9:23:00 UTC+2, thyl...@gmail.com 
escribió:

> Hello,
> I am trying to find what the cause of the margin of the story river's top 
> margin. Can't find it in any stylesheet.
>
> This is what I have tried in a custom stylesheet.
> ```
> section.tc-story-river {
>   position: absolute; //position: fixed also has been tried.
>   top: 0px;
>   border: 1px solid black;
> }
> ```
> But the CSS is not behaving the way I would expect. I looked at the all 
> the parent containers and cannot find anything could causing the story 
> river being pushed down.
> Thanks.
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/8de4bf1e-0339-483c-9ced-81a6846449a9n%40googlegroups.com.


[tw5] Stylesheet question. I am trying to find the cause of the story river's top margin

2022-04-06 Thread Tyler Harris
Hello,
I am trying to find what the cause of the margin of the story river's top 
margin. Can't find it in any stylesheet.

This is what I have tried in a custom stylesheet.
```
section.tc-story-river {
  position: absolute; //position: fixed also has been tried.
  top: 0px;
  border: 1px solid black;
}
```
But the CSS is not behaving the way I would expect. I looked at the all the 
parent containers and cannot find anything could causing the story river 
being pushed down.
Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/e052a4e7-9cf4-4c88-8f1e-a8d1f2ae21d0n%40googlegroups.com.