Questions tagged [extreact]

ExtReact is a Sencha product. ExtReact can help development teams and organizations get their applications to market faster by reducing development time using our 115+ pre-built and professionally maintained UI components.

React is a popular JavaScript framework that offers a component-based approach to building web apps. React, however, does not include any pre-built components. React developers are faced with the choice of either building these components from scratch or getting them from the community. You can develop web applications faster by using ExtReact with React.

55 questions
0
votes
1 answer

About the ExtReact7.2.0 License

I want to use the ExtReact components for my enterprise application. Is it free to use ? if yes, how to set it up for the project. PS : https://github.com/sencha/ext-react this code is open but i can't find out how to put it to work for my…
user14059067
0
votes
1 answer

Ext JS | Download chart with additional data

Is it possible to download chart with additional data? For example add labels when chart.download() method is called, I want these labels to be visible on download result (.png image), but not in rendered view. I have label described in chart…
0
votes
1 answer

How do I correctly configure ExtReact to run custom elements in Edge and IE?

I'm a little worried this is a dumb issue that I'm running into but here goes: I just created an ExtReact app following the tutorial here. Without changing any code I'm seeing the following error in Edge: The app loads fine in Firefox and Chrome…
0
votes
1 answer

The Ext React renderer function if throwing the error below, I want to combine two fields from the record as a single column using the renderer

{ return record.get('DispatchLocation') + ' to ' + record.get('ReceiptLocation') }} …
0
votes
1 answer

Ext React Segmented button throws an error when provided a value

I'm using ExtReact and I have a SegmentedButton. Based on the kitchen sink example I should be able to provide the SegmentedButton with a value, but when I try with the following code I get an error Invalid value "28800" for segmented button:…
0
votes
1 answer

ExtReact - Including a cartesian chart throws an error in the console

I am trying to build a simple ExtReact application with a cartesian chart. I've found that I can add most ExtReact components (like Container, Grid, Button, etc) but charts are causing me some pain. I've run into the following problem in both Ext…
0
votes
1 answer

Sencha ExtReact Nested Dialog not accessible

Details: If you watch the video you can see exactly the problem, the first dialog is working properly but not the nested dialog, for some reason is not accessible, any help will be greatly appreciated. Video showing the problem Version info: node…
0
votes
1 answer

Sencha extJs/extreact 6/7 Tree get selected records

I have this Tree in ExtJs that allows for multiple selection: My problem is the fact that I…
Romeo Mihalcea
  • 9,714
  • 12
  • 50
  • 102
0
votes
2 answers

ExtJs 6 or 7 focus treelist item into view

I have this treelist with a toolbar that I use to create new elements (it's a document list) and I want to focus the newly created item. I can select it but I don't seem to find a way of focusing it: const selected =…
Romeo Mihalcea
  • 9,714
  • 12
  • 50
  • 102
0
votes
2 answers

While using TabPanel only render active tab and only the first time

I'm creating an application with multiple tabs using ExtReact TabPanel component. The default behavior appears to be that all tabs are rendered during rendering of the TabPanel. However, I only want to render only the active tab and render it only…
user1015196
  • 617
  • 1
  • 7
  • 24
0
votes
1 answer

Displaying object on FormPanel in ExtReact

I'm new to ExtReact tools and I'm having issues with displaying an object in a FormPanel at least using the record property. As per documentation if I set the record property with my object the values should display on my form. Instead I find myself…
user1015196
  • 617
  • 1
  • 7
  • 24
0
votes
1 answer

Problems with including ExtReact theming

I had a problem following including theming in ExtReact project. I did all of offered steps: npm install -g @extjs/reactor # adds ext-react cli to your path ext-react generate theme --name my-theme and i put: new ExtReactWebpackPlugin({ theme:…
Zack Zilic
  • 832
  • 3
  • 12
  • 28
0
votes
0 answers

ExtJs and ExtReact in the same project

I've been googling for a while, unsuccessfully, if it is possible to use ExtJS on a React Project or use ExtReact components on a ExtJS Project. What I need to know is if ExtJS and ExtReact can coexist and been integrated in the very same project…
assembler
  • 3,098
  • 12
  • 43
  • 84
0
votes
1 answer

get active tab from Closable TabPanel in extReact sencha component

I'm making Closable TabPanel and at the moment when I click on the certain tab I will switch to the Panel of that's tab. What Panel's tab I click, that Panel opens. That's great. but now I want to have a carousel button on the side, to list next,…
Zack Zilic
  • 832
  • 3
  • 12
  • 28
0
votes
1 answer

When I convert component from stateless to statefull, data is not read in time;

So first I had a stateless component, and the data is read fine and just in time, and then when, for my needs, I needed to convert it to a stateful component it is not working for some reason like it should. It leaves the data empty for that…