Does anyone know how I can tell when a record is rendered from the buffered renderer so I can hook in custom event listeners the require the dom to exist? Hooking into the column render/after render...
Type: Posts; User: topched
Does anyone know how I can tell when a record is rendered from the buffered renderer so I can hook in custom event listeners the require the dom to exist? Hooking into the column render/after render...
Any progress on this bug yet? 2015 seems like a long time without a resolution.
If anyone see's this post and is wondering how to avoid this bug in sencha. Just write your own simple component with a display template of a content editable div. It makes absolutely zero sense why...
Dragging then dropping a panel into a panel that contains a htmleditor component causes the htmleditor body to be destroyed. Anyone else ran into this and have a solution? I want to try and avoid...
Anyone run into this scenario and have a way to fix it? We have a component that has a htmleditor inside of it. When calling panel.add(component) during initialisation everything works as expected....
I can't seem to place the cursor back properly when undoing and redoing when there are other items then just text. Anyone figure out how to do this or write a plugin?
Nope that didnt appear to work since its in a iframe. Had to override the htmleditors initEditor and relayedEvent function. Needed to add key press listeners so it can be relayed up properly.
Does anyone know what we need to hook into to catch key press events when using Ext.form.field.HtmlEditor? I can catch the click event no problem but no such luck on key events. I cant just listen to...
Does anyone know how to stop textfields from receiving auto focus? When another textfield is focused and we change tabs the first textfield in the new tab receives focus automatically. This behaviour...
The goal was to cutoff long text after x-number of lines and do a show more link on the last visible line to slide down the rest of the content. I inherited the disabled textarea that needs it and...
I should have been more specific in the post. I am looking for multiple lines then clamp inside a disabled textarea. Fairly sure its not possible w/o some heavy javascript, but thought maybe there...
Anyone figure out how to implement cross-browser line clamping using sencha?
I am having a issue vertically centring the toast inside the anchorEl. I tried using the css below (which works but causes the text to become blurry). I also tried using the align properties but it...
I am seeing a weird issue and not exactly sure what is going on. Inside our code when creating the table we have a view config like this
viewConfig: {
disableSelection: true,
...
The navigation model is causing content to scroll when a part of it is out of view and we do not want that. Is there any way to completely disable the navigationModel?
We can't just catch the...
Yes that is exactly my issue. Is a fix for this coming down the pipeline or should we be using a work-around to solve this issue?
Running Sencha v6.2.2.36
I am trying to set the CheckboxModel to simple mode and deactivate the keyboard navigation.
Ext.define('example', {
extend: 'Ext.grid.Panel,
.....