Forum: Tables & Charts
October 5th, 2018, 11:53 AM
|
Replies: 11
Views: 28,244
Re: Varying number of Rows and Colums
Dan,
Is there away I can do a copy fit and not allow Line Breaks?
I've used your code for past projects but I've never had to worry about Line Breaking when using Java.
...
|
Forum: Tables & Charts
October 3rd, 2018, 11:40 AM
|
Replies: 11
Views: 28,244
Re: Varying number of Rows and Colums
Think I got it working.
I added a simple If statement
var numColumns = (names.length < 6) ? 1 : 2;
for (var c = 1; c <= numColumns; c++)
if ( numColumns <= 1 )
myTable.AddColumn(32000);...
|
Forum: Tables & Charts
October 3rd, 2018, 11:21 AM
|
Replies: 11
Views: 28,244
Re: Varying number of Rows and Colums
Dan,
Looking over what you came up with and If I understand it correctly
This code is deremiitng how many columns.
var numColumns = (names.length < 6) ? 1 : 2;
And this part is how wide...
|
Forum: Tables & Charts
October 3rd, 2018, 10:48 AM
|
Replies: 11
Views: 28,244
Re: Varying number of Rows and Colums
Dan,
Thanks so much! This is just about their in what they are wanting.
The only issue that I'm seeing right now it's not centering the table in the text box when it's a single column.
|
Forum: Tables & Charts
October 2nd, 2018, 04:00 PM
|
Replies: 11
Views: 28,244
Re: Varying number of Rows and Colums
So I figured out 2 ways I can place multiple fields in to my Cells.
First would be calling multiple Fileds as part as the Table Rule
myTable.Rows[0].Cells[0].Content = Field("Name1") + '<br>' +...
|
Forum: Tables & Charts
October 2nd, 2018, 08:24 AM
|
Replies: 11
Views: 28,244
Re: Varying number of Rows and Colums
Whats the Frodo tutorial?
Right now I've been able to write a simple table like this example below.
I still need to figure many things things like how do I even get other fields added to a cell?...
|
Forum: Tables & Charts
October 1st, 2018, 09:30 AM
|
Replies: 11
Views: 28,244
|
Forum: Tables & Charts
September 27th, 2018, 10:25 AM
|
Replies: 11
Views: 28,244
Re: Varying number of Rows and Colums
Glad to here that it's possible.. I did not want to deep dive into to much info from the start if was not going to work.
So the Table needs to fit with in a certain size window. When it goes to a...
|
Forum: Tables & Charts
September 27th, 2018, 06:58 AM
|
Replies: 11
Views: 28,244
Varying number of Rows and Colums
I've got a project that the customer is wanting a table like layout. I've never have used Fusion Pro Tables so this will be a learning curve.
The issue is the amount of cells varies depending on...
|
Forum: The JavaScript Library
October 11th, 2016, 05:10 PM
|
Replies: 6
Views: 13,800
|
Forum: The JavaScript Library
October 11th, 2016, 03:58 PM
|
Replies: 6
Views: 13,800
|
Forum: The JavaScript Library
October 11th, 2016, 03:41 PM
|
Replies: 6
Views: 13,800
Re: delete all characters after
Thanks step...
What you supplied is always assuming that they supply the @.
See some users know to only enter everything before the @ while others do not.
Thanks
|
Forum: The JavaScript Library
October 11th, 2016, 12:08 PM
|
Replies: 6
Views: 13,800
delete all characters after
Customer is wanting to force an email address to use a certain FQDN.
they only want the customer to enter everything before the @.
Issue is some people can't read and they enter the full email...
|
Forum: FusionPro® VDP Creator
July 27th, 2015, 09:20 AM
|
Replies: 4
Views: 9,474
|
Forum: FusionPro® VDP Creator
July 22nd, 2015, 01:42 PM
|
Replies: 4
Views: 9,474
Re: CopyfitLine Issue
I know that text fits just fine..
But it's wanting to put in the <f name="Arial"><z newsize=12> <setwidth newsize=12> in front of the all the names..
I do have text that is to large so I would...
|
Forum: FusionPro® VDP Creator
July 22nd, 2015, 12:35 PM
|
Replies: 4
Views: 9,474
CopyfitLine Issue
What am I'm doing wrong? This should be a simple rule..
return CopyfitLine(" ", Field("Name"), "Arial",12,120,8, true);
Returns:
<f name="Arial"><z newsize=12> <setwidth newsize=12>JUSTIN...
|
Forum: FusionPro® VDP Creator
January 26th, 2012, 09:15 AM
|
Replies: 1
Views: 7,080
Range Sequential Numbering?
I've got an odd project. I need to find a way that I can generate Sequential Numbers 000001 thru 348000 but the kicker is I need to only grab every 1000 records starting with the 1st.
Here is the...
|