@boikom
@boikom
Forum Replies Created
-
AuthorPosts
-
adminKeymaster
Just tried, with latest non-Chromium Edge … same behavior!
adminKeymasterhttps://codepen.io/cetinsert/pen/KKPerWV – has the gif!
This time it is from Windows 10 (latest stable), Chrome (latest dev (but I don’t think it is a dev vs non-dev issue!))!adminKeymasterHi cetinsert,
We tested with macOS Mojave with the latest stable (not Dev) Chrome and Firefox, but still could not reproduce the issue. You can use a tool such as ScreenToGif or another to create a GIF that showcases the erroneous behavior. Please also share if there are any errors thrown in the browser’s console.
Best regards,
Dimitar
Smart HTML Elements Team
https://www.htmlelements.comadminKeymasterHere is the video from Firefox!
“””Removed link to third party website. Only links to codepen, jsfiddle or similar are allowed”””
adminKeymasterHi Dimitar,
- macOS Mojave 10.14.5
- Chrome 78.0.3904.9 (Official Build) dev (64-bit) (spins like crazy 🙂
- Firefox Quantum 69.0 (64-bit) (spins more slowly)
Do you know of a screen capture tool I can record a video with to share with you?
Thanks,adminKeymasterHello cetinsert,
We tested the demo, but were not able to reproduce the issue, even when rapidly clicking. Could you, please, share more information that may help us reproduce it (e.g. what browser you are testing on, what is the succession and number of clicks)?
If you wish, you can disable the spin animation by settinganimation="none"
.
Best regards,
Dimitar
Smart HTML Elements Team
https://www.htmlelements.comSeptember 6, 2019 at 7:32 am in reply to: horizontal range-slider missing selection track highlight from #100316adminKeymasterNow, this https://www.htmlelements.com/demos/slider/ticks-on-track/ works with CSS of >=4.0 but not in 3.2.
That is probably where the regression for the simpler case mentioned above was introduced!September 5, 2019 at 9:51 pm in reply to: horizontal range-slider missing selection track highlight from #100315adminKeymasterI mean … since 4.0! I need additional CSS to make that div appear for horizontal sliders. This is a regression in your CSS. Please treat it as such.
Below is a quick fix:
smart-slider:not([orientation=vertical]) .smart-value {
--h: 2px; --d: -1px;
height: var(--h);
transform: translate(var(--d), var(--d));
}
September 5, 2019 at 5:20 pm in reply to: horizontal range-slider missing selection track highlight from #100314adminKeymasterHi cetinsert,
Thanks for writing.
The smart-slider .smart-value CSS is used. You can customize the CSS class based on your application needs.
Best Regards,
George
Smart HTML Elements Team
https://www.htmlelements.comSeptember 5, 2019 at 2:02 pm in reply to: horizontal range-slider missing selection track highlight from #100313adminKeymasterapplies to basic, non-range sliders too: https://www.htmlelements.com/demos/slider/basic/
September 5, 2019 at 1:25 pm in reply to: Grid – element.exportData() – missing time of dates #100311adminKeymasterCan you provide an example?
September 4, 2019 at 3:42 pm in reply to: Grid – element.exportData() – missing time of dates #100309adminKeymasterHi cetinsert,
.xlsx Dates are internally represented as numbers. If you add Format of your Date column in Excel or Google Spreadsheet, you will see that the value is exported correctly. We put a default ‘d’ format in the ver. 4.4.0 for Dates.
.html Dates export depends on the Grid’s cellsFormat property. The default value is ‘d’ which is (dd/MM/YYYY) during the Grid export, when no format is set. If you want to keep the time component, you will need to set your columns format.
Regards,
George
Smart HTML Elements Team
https://www.htmlelements.comSeptember 4, 2019 at 7:58 am in reply to: Grid – { editing: { enabled, batch } } – commandColumnDelete – width grow glitch #100303adminKeymasterHi cetinsert,
Additional Grid settings are required:/*1*/ 'commandColumnEdit': { visible: false }, /*2*/ 'commandColumnCancel': { visible: false }, /*3*/ 'commandColumnUpdate': { visible: false }
Best Regards,
George
Smart HTML Elements Team
https://www.htmlelements.com/adminKeymasterThe problem was that I had the first row frozen. It will get an exception as shown above if you try to insert before a frozen row.
If not frozen, then I can insert at 0, and it works. This gives me the most-recent-first insertion I want to show history.
I can see that it’s not obvious what the “correct” behaviour might be. It depends on the full definition of what you consider to be “frozen”.
I think anyway I didn’t need to freeze, as I just want to freeze the headers. I supposed the headers are automatically frozen anyway.September 2, 2019 at 7:12 pm in reply to: grid with css height auto and add new row fails to display rows after ~3 adds #100283adminKeymasterThank you so much – I appreciate the prompt feedback! It allows me to move on to other things while waiting for a fix.
-
AuthorPosts