Issues
- Event creation in DDL spreadsheet has incorrect date formatAUI-3112Resolved issue: AUI-3112Jonathan Mak
- Datatable handles incorrectly new line characters in textarea fieldAUI-3094Resolved issue: AUI-3094Jose Balsas
- DataTable width and height attributes have no effectAUI-2088UI Alloy
- XSS in AUI DatatableAUI-2059Resolved issue: AUI-2059Jonathan Mak
- Unable to have same 'value' for Select with different name/optionAUI-1953Resolved issue: AUI-1953Byran Zaugg
- Update AUI Datatable CSS from overriding bootstrap table CSSAUI-1839Resolved issue: AUI-1839Maira Bello
- Fix datatable celleditor checkbox / radio position.AUI-1769Resolved issue: AUI-1769Maira Bello
- AUI Datatable radio and checkbox fields use incorrect Bootstrap markupAUI-1768Resolved issue: AUI-1768Jonathan Mak
- AlloyUI.com DataTable DateCellEditor demo has dateFormat attribute in wrong object.AUI-1664Resolved issue: AUI-1664Zeno
- Fix modules behavior on touch screen desktop computersAUI-1592Resolved issue: AUI-1592Jonathan Mak
- aui-datatable-accessible classAUI-1590Resolved issue: AUI-1590Zeno
- Make aui-datatable accessibleAUI-1588Resolved issue: AUI-1588Zeno
- Make aui-datatable cell editing accessibleAUI-1550Resolved issue: AUI-1550Jonathan Mak
- Minimize property lookups for multiple A.Escape calls to use AEscapeAUI-1441Resolved issue: AUI-1441eduardo.lundgren@liferay.com
- Make aui-datatable accessibleAUI-1352Resolved issue: AUI-1352Jonathan Mak
- A User is unable access the DataTable fields with just the keyboardAUI-1344UI Alloy
- A User is unable to deselect their previous selection in a Datatable with Selection and HighlightAUI-1342Resolved issue: AUI-1342eduardo.lundgren@liferay.com
- Make aui-datatable work on touch devicesAUI-1300Resolved issue: AUI-1300eduardo.lundgren@liferay.com
- Datatable Property List errors when 'enter' key is pressed when no active cellAUI-1288Resolved issue: AUI-1288eduardo.lundgren@liferay.com
- Fix DataTable cell editors styling in Bootstrap 3AUI-1258Resolved issue: AUI-1258Zeno
- Add .table class to DataTable on Bootstrap 3AUI-1236Resolved issue: AUI-1236Zeno
- Option can not be added in datatable-editAUI-1195Resolved issue: AUI-1195eduardo.lundgren@liferay.com
- Datatable highlight does not resize to fit when highlighted elements resizeAUI-1170Resolved issue: AUI-1170eduardo.lundgren@liferay.com
- IE7 complains about undefined 'console' in demosAUI-1136Resolved issue: AUI-1136Jonathan Mak
- Document aui-datatableAUI-1055Resolved issue: AUI-1055Zeno
- IE7 Datatable Date Parse javascript error Expected identifier, string or numberAUI-1037Resolved issue: AUI-1037Nate Cavanaugh
- Maximum call stack size exceeded when adding a column to datatableAUI-1013Resolved issue: AUI-1013Jonathan Mak
- DateCellEditor should highlight the selected date only when it's value is not empty and properly parsedAUI-979Resolved issue: AUI-979eduardo.lundgren@liferay.com
- DateParser is returning the current date when the parsing failsAUI-978Resolved issue: AUI-978eduardo.lundgren@liferay.com
- Error when trying to parse date on datatable componentAUI-973Resolved issue: AUI-973eduardo.lundgren@liferay.com
- Data Table demos out of dateAUI-809Resolved issue: AUI-809UI Alloy
- IE7 Datatable Demo javascript error Expected identifier, string or numberAUI-790Resolved issue: AUI-790Nate Cavanaugh
- Alloy UI Datatable Handle CSS hides the whole row in IE7AUI-789Resolved issue: AUI-789Nate Cavanaugh
- DataTable selection getActiveRecord/getActiveColumn breaks when the datatable dom elements are recreatedAUI-778Resolved issue: AUI-778eduardo.lundgren@liferay.com
- Use read only feature of Data Table component in Form Builder instead of setting editor = nullAUI-701Resolved issue: AUI-701b.basto@gmail.com
- Add support for read only rows in the Data Table componentAUI-699Resolved issue: AUI-699b.basto@gmail.com
- DataTable highlight moduleAUI-661Resolved issue: AUI-661eduardo.lundgren@liferay.com
- DataTable selection moduleAUI-660Resolved issue: AUI-660eduardo.lundgren@liferay.com
- DataTable column alignment issuesAUI-591Resolved issue: AUI-591eduardo.lundgren@liferay.com
- Add compareFn option to make A.ArraySort.compareIgnoreWhiteSpace more flexibleAUI-584Resolved issue: AUI-584b.basto@gmail.com
- Data Table - DropDown don't show multiple values selectedAUI-580Resolved issue: AUI-580b.basto@gmail.com
- Editing Boolean fields in Spreadsheet View causes redirectAUI-539Resolved issue: AUI-539Marcellus Tavares
Event creation in DDL spreadsheet has incorrect date format
Description
Environment
causes
is related to
Details
Assignee
Jonathan MakJonathan Mak(Deactivated)Reporter
Arthur ChenArthur Chen(Deactivated)Git Pull Request
Components
Priority
Low
Details
Details
Assignee
Reporter
Git Pull Request
Components
Priority
Zendesk Support
Zendesk Support
Zendesk Support
Activity
Jonathan MakAugust 22, 2017 at 3:11 PM
From @Samuel Kong:
Here's my version of the explanation on the problem:
The root problem is that when the user types something, we are not saving the original text that the user typed in. Instead we are changing the value - in this case we're replacing newlines with
<br />
(or \n). This creates two problems. As an example, let's assume that it's saved as<br />
(although this also applies if we save as\n
):
We don't have an escape in case the user wants the literal<br />
. So a user who types<br />
will actually see this turned to a newline in some situations.
When we output the text, we often need to output the text differently depending on the context. If we output the text inside of a<div>
,<span>
, etc, we don't need to change the text. However, if we need to output the text inside of a<textarea>
, we need to change the<br />
to\n
. And if we need to output the text in a<input value="">
, we need to remove the<br />
.This is the problem for this ticket. We're using the same code in multiple places (e.g., Kaleo Designer and DDL) so it's always outputting the user's input the same way. However, we need to output the user's input differently depending on context. This is also why the test case is wrong. We're assuming that that output context is always the same, but it's not.
Here's an concrete example. User types in:
one
two
This is automatically changed to:
one<br />two
If we use the outputFormatter, it will change the value to:
one\ntwo
Note that
\n
here is not an escape sequence. We are actually storing a string that is 8 characters long here. Regardless of whether or not we use a formatter here, the point is that we have lost the user's original input. Now when we try to display the user's input, we'll need to convert what we saved: For example, for a textarea, we need to output
<textarea>one
two</textarea>
But for a
<div>
, we need to output
<div>one<br />two</div>
So the output needs to change depending on the context.
The proper way to do this is to always store the original text. The text should than output based on the context. However, I'm thinking we can't make this change for 7.0 since such a change will break existing installs, but correct me if I'm wrong on this.
Arthur ChenAugust 11, 2017 at 1:36 AMEdited
@Jonathan Mak,
I took a look at the failing unit test: https://github.com/liferay/alloy-ui/blob/master/src/aui-datatable/tests/unit/js/tests.js#L483
and I believe the unit test is not for testing the correct behaivor after https://liferay.atlassian.net/browse/AUI-3094#icft=AUI-3094/LPS-69892 is fixed, so I sent pull request to revert the unit test, here are the reasons:
1. https://liferay.atlassian.net/browse/AUI-3094#icft=AUI-3094/LPS-69892 reported an issue that string of <br> (or <br/> or <br />) is displayed in textarea fields in DDL, rather than a correct behavior of visual effect of new line. After my fix of changing to inputFormatter, I am not seeing the bug coming back, which proves my fix is not causing a regression to the issue reported in https://liferay.atlassian.net/browse/AUI-3094#icft=AUI-3094/LPS-69892
2. What the unit test does is that it tests if the code is able to replace <br> (or <br/> or <br />) with newline character '\n', after changing to outputFormatter (because outputFormatter is used to replace br with \n). However the change of outputFomatter is not correct in the first place so the unit test is pointless now.
3. Here is a catch: I went to kaleo designer and tried to type some thing in description field,
with inputFormatter, it displays <br/>; with outputFormatter, it displays ' '(a space). Neither is displaying a visual effect of new line.
There is a big different between description field in kaleo designer and note field in DDL spreadsheet.
The input cell for both is the same textarea editor cell, which supports to input multi-lines, but the display cell for note field is textarea as well, while the display cell for description is text cell(which means it supports one line only). So what I am trying to say in this 3rd point is that: if someone reports there is <br/> in the kaleo designer, we can basically tell them it is normal because the cells are single-lined.
4. To prove my reasoning, here are some interesting functions to set breakpoint:
aui-datatable-cell-editor-support.js/_onEditCell
aui-datatable-cell-editor-support.js/_onEditorSave
datable-table.js/_extractDisplayColumns (used to see the type of each column of cells)
5. And of cause the AUI API says: formatValue() function is supposed to take an inputFormatter, not a outputFormatter: https://alloyui.com/api/classes/A.BaseCellEditor.html#method_formatValue
Jonathan MakJuly 28, 2017 at 10:25 AM
These changes have been reverted as of 3.1.0-deprecated.20 since they are causing a regression.
Go to DDL and add an list of any kind with a date field, giving it a name for example test.
Go to test and switch to spreadsheet view, input a date for example, Aug 1st, 2017.
Now we have couple of things wrong here:
1. If you click the cell again, you will see the date is off by one day, ie July 31st, 2017.
2. Switch to normal view of the list, you will see the date of that entry saying Content is temporarily unavailable.
3. Add an entry with a date in the normal view, and then switch back to spreadsheet view, you will see there are two different formats:
The one added in spreadsheet view: Tue Aug 01 2017 00:00:00 GMT+0800(CST)
The one added in normal view: 2017-08-01