@martin-jq
@martin-jq
Forum Replies Created
-
AuthorPosts
-
martin-jq
ParticipantHello Oliver,
It this case the rows still exist in the data source.
Best Regards,
MartinSmart HTMLElements Team
https://www.htmlelements.com/martin-jq
ParticipantHello Oliver,
Thank you for the feedback!
I would suggest you use the dataRecords collection(in your case projects) instead grid.Rows.
Best Regards,
MartinSmart HTMLElements Team
https://www.htmlelements.com/martin-jq
ParticipantHello Borja,
We will need more details and information in order to be able to help you.
Could you provide a code example where this issue is reproducible?
Thank you!Best Regards,
MartinSmart HTMLElements Team
https://www.htmlelements.com/martin-jq
ParticipantHello Oliver,
You can use the OnReady event of the Grid.
Here is an example:private void OnReady(Grid grid) { grid.SelectRowsByIndex(dataRecords.Where(record => record.Id % 2 == 0).Select((x) => x.Id).ToArray()); }
Best Regards,
MartinSmart HTMLElements Team
https://www.htmlelements.com/martin-jq
ParticipantHello Angel,
Yes, you can send your code example to support@jqwidgets.com.
Best Regards,
MartinSmart HTMLElements Team
https://www.htmlelements.com/martin-jq
ParticipantThank you for the feedback!
Best Regards,
MartinSmart HTMLElements Team
https://www.htmlelements.com/martin-jq
ParticipantHello Joseph,
You need to set the theme attribute to the
body
element.Best Regards,
MartinSmart HTMLElements Team
https://www.htmlelements.com/martin-jq
ParticipantHello Oliver,
If you need to update or remove rows you can use the
dataRecords
field of the Grid.
You can check the Dynamic Rows demo from Blazor Grid Demos.Best Regards,
MartinSmart HTMLElements Team
https://www.htmlelements.com/martin-jq
ParticipantHello Joseph,
Could you, please, send us a code example of the React component where you are using the dropdown list?
Thank you!Best Regards,
MartinSmart HTMLElements Team
https://www.htmlelements.com/martin-jq
ParticipantHello Borja Albert Gramaje,
Could you, please, provide us a code example where this issue can be reproduced so we can inspect what may be causing it?
We are unable to solve this just from the screenshot.
Thank you!Best Regards,
MartinSmart HTMLElements Team
https://www.htmlelements.com/martin-jq
ParticipantHello tbettinazzi@axioma.it,
Please, note that the first argument of the
onCellUpdate
callback is callscells
and it represents an array of edited cells.
So you should get the row id like this:cells[0].row.id
Please, check this Example.Best Regards,
MartinSmart HTMLElements Team
https://www.htmlelements.com/martin-jq
ParticipantHello Borja Albert Gramaje,
We will need some more information in order to be able to help you.
Could you, please, provide us an example where this issue can be reproduced so we can inspect what may be causing it?
Thank you!Best Regards,
MartinSmart HTMLElements Team
https://www.htmlelements.com/martin-jq
ParticipantHello edwardsmarkff,
I meant that if you, for example, use
autoComplete="inline"
the input shows a completion helper that appears next to the input cursor. This helper shows the first possible match by completing the input text and when you click outside the combobox its value is updated.
WithautoComplete="none"
, that doesn’t happen. Also the drop down list items are not filtered. You are right that pressing Enter when an item is selected updates the value. Using theincremental-search-mode
property is a good solution.Best Regards,
MartinSmart HTMLElements Team
https://www.htmlelements.com/martin-jq
ParticipantHello edwardsmarkff,
When the
autoComplete
property is set to “none” the auto complete is disabled, so the input of the combobox is not filled with the selected item’s text and the text doesn’t become the value of the textbox when the combobox loses focus. So this behavior is expected.Best Regards,
MartinSmart HTMLElements Team
https://www.htmlelements.com/martin-jq
ParticipantHello Jorge,
I have added a feature request. Thank you for the feedback!
Best Regards,
MartinSmart HTMLElements Team
https://www.htmlelements.com/ -
AuthorPosts