I am having issues rendering any sort of react component inside a Grid column.
Here is some example code:
<Column
text="Title"
dataIndex="itemName"
renderer={(value, record) => (
...
Type: Posts; User: timmkd
I am having issues rendering any sort of react component inside a Grid column.
Here is some example code:
<Column
text="Title"
dataIndex="itemName"
renderer={(value, record) => (
...
I have recently started using ExtReact 7.0 after being stuck in the past with 6.5.3 for some time. It looks to me though that the new version of ExtReact is no longer compatible with React Dev Tools...
UPDATE:
I solved this by installing Java 11. Missed that prerrequisite!
Installing a new app as per https://docs.sencha.com/extreact/7.0.0/guides/getting_started.html
however I keep getting an error when running npm start
Here is the error log:
ℹ 「ext」:...
Trying to use buildURL to customise the url for a REST proxy on a local model. The GET/POST/PUT requests have different urls in my API so when I try to customise the url via buildUrl I get the...
Not sure if any Sencha guys have been able to see this?
I am trying to give my app multiple entry points for a multipage app using chunks in my webpack.config file.
I am finding that when I do with with HtmlWebpackPlugin in my webpack.config.js, the...
Noticed on the kitchensink app that I tooltip can be assigned to a div with data attributes as such:
<div style={{...styles.qTipItem, ...styles.color1}} data-qtip="This tip is inline"...
I am trying to understand nested loading as defined in: http://docs.sencha.com/extreact/6.5.3/modern/Ext.data.schema.Association.html
However I can't seem to figure out how the models are supposed...
The form inputs are still somewhat lacking, for instance multi-select fields are not currently available and I am going to need to implement some custom inputs.
I have noticed however that adding...
I have a store of data that I am using to render information. I need to group the info and render the groups as lists. I am looping through Store.getData().items and that seems to have only sorted...
Is it possible to set the position of the tooltip that appears on the collapsible panel button? It displays below the button on default but I would like to position it above the button.
Thanks for your help with this Tristan. It turns out my API was sending back the id encapsulated inside another property ({comment: {id:1}} instead of just {id: 1}) so ExtReact was not able to...
Is it possible to get some clarification on how a record is supposed to work when added to a store? It seems there may be some bugs here as Tristan, you mentioned that there should be no id for...
I think transform will be my goto for now.
It may be a bug that the ID is being included for phantom records as the proxy was definitely sending an id in my create POST requests.
Actually I can see I may be able to resolve this using the transform config. I'll look into that unless there is a better preferred method.
Ah yes, this does solve the problem for POST requests which are used when adding items via a RESTful API.
However this now removed the id from ALL requests, when it is still needed for update and...
Thanks Tristan, however the appendId config seems to be for resolving a different issue than mine. It seems to remove the id from appending id's to the URL sent to the server but there is no mention...
I'm using Ext.data.proxy.Rest.html to update my Store.
When I create a new model/row in my store, it is the proxy is sending a POST request correctly, however it is adding it's own id to the model...
I'm a user myself. This is the only forum that exists but the Sencha team are usually pretty good at replying within a (working) day of a question. I have also always found them to be very thorough...
I find it usually takes a day or so for the sencha guys to reply to forum posts so I am sure you will get a reply very shortly. :)
Perfect, thanks Mark!
Hi Mark. You're right in that project does use BrowserRouter, however the above problem still exists because I am trying to set up my route paths with multiple layers to get params into the url. To...
I have a form panel with a disabled attribute as such
<FormPanel
padding="0"
ref={form => this.form = form}
onBeforeSubmit={this.handleSubmit}
disabled={this.state.loading}
>
Because ExtReact uses FormPanel in place of <form> tags, I have attached a submit handler to the Button inside my FormPanel. However, I am trying to figure out how to submit my form on enter. There...