@@ -347,17 +347,17 @@ private void update(final HasComponentSelection hasSelectedRows) {
347
347
final ComponentSelection selected = selection .get (0 );
348
348
currentStreamId = getLong (getTextSettings ().getStreamIdColumn (), selected );
349
349
if (currentStreamId == null ) {
350
- currentStreamId = getLong (selected .get (SpecialColumns .RESERVED_STREAM_ID ));
350
+ currentStreamId = getLong (selected .getParamValue (SpecialColumns .RESERVED_STREAM_ID ));
351
351
if (currentStreamId == null ) {
352
- currentStreamId = getLong (selected .get (OLD_STREAM_ID ));
352
+ currentStreamId = getLong (selected .getParamValue (OLD_STREAM_ID ));
353
353
}
354
354
}
355
355
currentPartIndex = convertToIndex (getLong (getTextSettings ().getPartNoColumn (), selected ));
356
356
currentRecordIndex = convertToIndex (getLong (getTextSettings ().getRecordNoColumn (), selected ));
357
357
if (currentRecordIndex == null ) {
358
- currentRecordIndex = getLong (selected .get (SpecialColumns .RESERVED_EVENT_ID ));
358
+ currentRecordIndex = getLong (selected .getParamValue (SpecialColumns .RESERVED_EVENT_ID ));
359
359
if (currentRecordIndex == null ) {
360
- currentRecordIndex = getLong (selected .get (OLD_EVENT_ID ));
360
+ currentRecordIndex = getLong (selected .getParamValue (OLD_EVENT_ID ));
361
361
}
362
362
}
363
363
final Long currentLineFrom = getLong (getTextSettings ().getLineFromColumn (), selected );
@@ -546,9 +546,9 @@ private Long convertToIndex(final Long no) {
546
546
547
547
private Long getLong (final ColumnRef column , final ComponentSelection row ) {
548
548
if (column != null && row != null ) {
549
- String val = row .get (column .getId ());
549
+ String val = row .getParamValue (column .getId ());
550
550
if (val == null ) {
551
- val = row .get (column .getName ());
551
+ val = row .getParamValue (column .getName ());
552
552
}
553
553
return getLong (val );
554
554
}
0 commit comments