I didn't notice. Maybe we have common distant parents :))
Thanks for this analyze and your work. I didn't took time to provide a complete GitHub example.
But IMO, this problem occurs even...
Type: Posts; User: bcourtine
I didn't notice. Maybe we have common distant parents :))
Thanks for this analyze and your work. I didn't took time to provide a complete GitHub example.
But IMO, this problem occurs even...
Hi,
We have a valid ExtReact license. But when we try to create a 6.6.0 app, we encounter a problem during activation.
Here is the output of a fresh activation of ext-react-gen:
Yes. Without this package, the "renderer" prop does not work (even the first example).
[FONT=arial]
It is the main issue. Only "* -> text" transformations work. "* -> JSX" does not work, and it...
Hello,
I tried ExtReact 6.6.0 and have a problem with Column "renderer" prop.
From the boilerplate application from "ext-react-gen app demo", I modified a Column from the "Home" page:
...
After rewriting the component step by step, I solved this problem.
ComboBox blinking effect was a consequence of the Redux binding for the component. Without Redux, we have the expected behaviour.
It is possible. You can use `yourTreeStore.getRoot().expandChildren(true);`.
It is probably an error in the documentation, but the `checked` property can be used after initialization to change checked state.
You can also change it with the `setChecked` method available on...
Hello,
We use a ComboBoxField to select a value provided by a REST backend.
Here is our component "RemoteCombo", in the fiddle https://fiddle.sencha.com/?extreact#view/editor&fiddle/2efr
...
Posted here by error: reposted on ExtReact forum. https://www.sencha.com/forum/showthread.php?469761-ComboBoxField-best-practices-to-avoid-blink-behaviour
Found an ExtJS snippet that works:
Ext.onReady(function() {
Ext.Date.dayNames = ['Dimanche', 'Lundi', 'Mardi', 'Mercredi', 'Jeudi', 'Vendredi', 'Samedi'];
Ext.Date.monthNames = [
...
Hello,
We use the "DatePickerField" component. When the picker appears, titlebar shows the choosen date in English ("Tue, Feb 20 2018" for example).
How can we localize this date?
If a...
The form we are submitting is a filter form (in a page containing filters and a datagrid).
This form is not a domain object, and form fields does not match the datagrid columns. So we don't have an...
In a form, we use the ExtDatePickerField component to select a date.
The form submit triggers a REST request to refresh a datagrid. The grid has a dataStore, and uses a Ext.data.proxy.Ajax with...