Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Columns that have no filters create whitespace in the filter section #70

Open
the-last-byte opened this issue May 11, 2022 · 1 comment

Comments

@the-last-byte
Copy link

the-last-byte commented May 11, 2022

It would be expected that a column with no filter will not create an empty section in the layout.

image

image

final sortablegrid.SDGField relatedToField = new sortablegrid.SDGField(
			FIELD_ID_RELATED_TO,
			'Related To',
			'What.Name',
			'STRING',
			'',
			true,
			false,
			false,
			null,
			2
		);
		final sortablegrid.SDGField activityDateField = new sortablegrid.SDGField(
			FIELD_ID_ACTIVITY_DATE,
			'Due Date',
			'ActivityDate',
			'DATE',
			'',
			true,
			false,
			false,
			null,
			3
		);
		final sortablegrid.SDGField statusField = new sortablegrid.SDGField(
			FIELD_ID_STATUS,
			'Status',
			'Status',
			'PICKLIST',
			'',
			true,
			true,
			false,
			null,
			4
		);
		final sortablegrid.SDGField assignedToField = new sortablegrid.SDGField(
			FIELD_ID_ASSIGNED_TO,
			'Assigned To',
			'Owner.Name',
			'PICKLIST',
			'',
			true,
			true,
			false,
			null,
			5
		);
@the-last-byte
Copy link
Author

@flindsaySFDC I am happy to put out some fixes - but the pull request will need to be answered and approved.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant