cancel
Showing results for 
Search instead for 
Did you mean: 

added table column is not visible

Former Member
0 Kudos

Hi,

i have added a column in a table but after deploying it, it is not visible. i notice this calculated context attribute UiTableSize, and this is the code below;

public int getUiTableSize(IPrivateSearchToolView.IContextElement element)

{

//@@begin getUiTableSize(IPrivateSearchToolView.IContextElement)

int rv = wdContext.nodeToolSearchResults().size();

if (rv < 2)

rv = 2;

if (rv > 25)

rv = 25;

return rv;

//@@end

}

could this be the one controlling on how many columns will be shown? if not, how can i make my column be visible.. i tried comparing the properties of it to the others and its all the same.

Thanks,

Vin

Accepted Solutions (1)

Accepted Solutions (1)

p330068
Active Contributor
0 Kudos

Hi Ns240e,

If getUiTableSize is bound to table visible row, then it control only number of row to be displyed in the table at runtime.

Check the visibility property of the table columns if they are bound to any contect attribute.

Hope it will helps

Regards

Arun

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

It looks like this code controls the row count in the table and not the column count.

Regards,

Shyam.

Former Member
0 Kudos

hmmn. That's the only codes that i can see that maybe will control it.. Other codes are for the business logic. Any help on how can i get it displayed, the colums that i have added.