jQWidgets Forums
Forum Replies Created
-
Author
-
April 3, 2017 at 2:53 pm in reply to: getrowid not working after inline editing cell getrowid not working after inline editing cell #92634
Hello Peter,
sorry my fault. ;( I just wanted to help you to find the failure. Can you remove my post than?
Best regards
April 3, 2017 at 2:07 pm in reply to: getrowid not working after inline editing cell getrowid not working after inline editing cell #92628Hi Hristo,
the bug can be reproduced with
combobox
ascolumntype
too. Seems like there is a bug injqxgrid.edit.js
in method_showcelleditor
:var isdataadapter = this.source._source ? true : false; [...] if (!isdataadapter) { [...] } else { var dataSource = { localdata: this.source.records, datatype: this.source.datatype, async: false } dataadapter = new $.jqx.dataAdapter(dataSource, { autoBind: false, async: false, uniqueDataFields: [displayfield], autoSort: true, autoSortField: displayfield }); } [...] editor.jqxDropDownList({ enableBrowserBoundsDetection: true, keyboardSelection: false, source: dataadapter, rtl: this.rtl, autoDropDownHeight: autoheight, theme: this.theme, width: $element.width() - 2, height: $element.height() - 2, displayMember: displayfield, valueMember: datafield });
As
source
for the row edit widget you passdataadapter
. But it doesn’t contain the original source data like theid
settings. Later thissource
will be used injqxdata.js
in methoddataBind
to recreate `records via:var recordid = me.getid(source.id, record, i); if (typeof (recordid) === "object") { recordid = i; } record.uid = recordid;
But
source.id
is not set in the givensource
object.Would be nice if that could be fixed…
Thanks in advance
Hello Peter,
we’re facing the same problem.
Within the demo with the filter row (linked above) the user can’t type in a date with the keyboard as already stated by jessiema. It can just be inserted via the calendar popup. In that way it behaves different compared to using the date input in the menu filter or within row editing mode where it is possible to just type in the date via keyboard.
Is it a bug or is it possible to activate the same functionality for the filter row too?
Best regards
January 19, 2017 at 2:45 pm in reply to: Editable date column with min and max Editable date column with min and max #90827Hi Peter,
well, yes that would work but seems more like a workaround for an obvious bug.
Problem with this workaround is is that e.g. an user maybe accidentally clicks on such an editable date column and than a date will be inserted although it wasn’t users intention.
Best regards
January 11, 2017 at 1:23 pm in reply to: Horizontal scroll bar overlaps last row Horizontal scroll bar overlaps last row #90503Hi Peter,
well, it’s not a major problem but our customers are very fussy. To turn off
autoheight
and use a fixed height is not an option for us since the grid height shall be automatically set after adding or removing rows.May in any future release this could be fixed as it seems just a little calculation problem while calculation the position of the scroll bar.
Thanks anyway.
Best regards
January 10, 2017 at 3:30 pm in reply to: Horizontal scroll bar overlaps last row Horizontal scroll bar overlaps last row #90451Hi Peter,
thanks for your fast response. Actually your answer is not very satisfactory. It’s like a feature has bug and instead of fixing it the solution is to not use that feature. :S
By not using
rowsheight
it still remains the same problem – still overlapping, last row hasn’t full row height like the other rows.So we have to get by with that overlap bug when using
autoheight
in combination with horizontal scroll bar?Best regards
January 2, 2017 at 2:41 pm in reply to: Custom sorting for single column Custom sorting for single column #90232Hi Christopher,
thanks for your answer. Are there any plans to implement such feature?
For now we will stick with the solution above and just reapply the current sort settings after adding, updating or removing a row as that seems to work.
Best regards
January 2, 2017 at 2:10 pm in reply to: Possible issue when trying to edit a dropdown field with checkbox selection mode Possible issue when trying to edit a dropdown field with checkbox selection mode #90231Hello,
we’re struggling with the same issue. May you could tell us when to expect a solution for this issue? As workaround we use
multiplerows
instead ofcheckbox
asselectionmode
but we would rather use the checkbox mode.Best regards
-
AuthorPosts