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

hide column if column property hidden:true and apply column number properties #154

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Conversation

MSIH
Copy link

@MSIH MSIH commented Mar 2, 2017

No description provided.

MSIH added 3 commits March 2, 2017 14:41
in EditableGrid.prototype._rendergrid
// hide column if column property hidden:true
if (columns[j].hidden) {td.style.display = 'none';}
…-true

hide column if column property hidden:true
added support for using column properties to format numbers

XML
precision: col.getAttribute("precision"),
				decimal_point: col.getAttribute("decimal_point"),
				thousands_separator: col.getAttribute("thousands_separator"),
				unit_before_number: col.getAttribute("unit_before_number"),
				nansymbol: col.getAttribute("nansymbol")

JSON
	precision: columndata.precision,
				decimal_point: columndata.decimal_point,
				thousands_separator: columndata.thousands_separator,
				unit_before_number: columndata.unit_before_number,
				nansymbol: columndata.nansymbol
@MSIH MSIH changed the title This hide column if column property hidden:true hide column if column property hidden:true and apply column number properties Mar 21, 2017
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

Successfully merging this pull request may close these issues.

2 participants