I didn't think about this third solution, and it seems better as you explain.
I will try it and certainly adopt it !
Type: Posts; User: senacle
I didn't think about this third solution, and it seems better as you explain.
I will try it and certainly adopt it !
I want to use Laravel and Extjs for my app.
I made some search and now i'm wondering what is the best way.
...
If the form fields have this property
labelAlign: 'right',
the override put back
labelAlign: 'left',
An other way i've found is to change the labelSeparator :...
It's not possible to choose [element id] for msgTarget property.
There's only the list qtip, title, under, side, none
Ok, i've found what is wrong.
I'm using a store with a rest proxy with reader and writer of type json.
In Extjs 6.5, onRestException of the proxy, i take :
var reponse =...
I'm facing a strange behaviour.
I've this message in Firefox console :
Ext.JSON.decode(): You're trying to decode an invalid JSON String
When i trace the error, i come in the line 56166 of...
Some screenshots to show how it looks.
In combo
57742
In list
57743
Hello, thanks to some of you, i did an upgrade for FontAwesome 5.3.1 under Ext 6.6.0
Forked from :
https://www.sencha.com/forum/showthr...e-Font-Awesome
...
Maybe you need to create the multiselector-search view first. If no, you will have some error message if you want to access it.
See these lines of code in...
Hello,
I'm facing this need also.
After searching, i found this :
https://fiddle.sencha.com/#view/editor&fiddle/2cpu (for Ext 5.1.3)...
If you come here, here is the code for Ext 6.6.0
function checkAll(cb, checked){
var group = Ext.getCmp('id_annuadCheckAlphabet');
group.eachBox(function(item){
...
Hello,
I spent few days to find how to post datas with an association, linked with a form and a grid.
I don't know why, but the associated datas aren't posted.
Because of this bug ? :...
Come back to this after some monthes, with new needs.
I use an other way to load file via CRUD operations : the Javascript' API "File", and store the file (image) in PgSQL database.
Here's the...
That's it !
Thanks
I did a more simple code, without onFormRender
var form = this.getView().getForm(),
values, model,
store = Ext.getStore('annuaire.AnnuaireCadre');
Hello,
I've a form.
After entering datas into the form, i want to perform a Crud operation with a store.
I've searched and found some examples and explanations, but i'm facing an error.
...
Hello,
I've a form.
I've a radiogroup in this form.
When checking some options, a textfield is showing and must be filled.
When checking some other options, the textfield is hiding and must not...
Old thread...
An other solution that works under Extjs 6.5.3
https://joekuan.wordpress.com/2012/04/26/create-a-password-prompt-dialog-box-on-extjs-4/
var msgbox = Ext.Msg.prompt('Password...
Old thread...
An other solution that works under Extjs 6.5.3
https://joekuan.wordpress.com/2012/04/26/create-a-password-prompt-dialog-box-on-extjs-4/
var msgbox = Ext.Msg.prompt('Password...
Old thread...
An other solution that works under Extjs 6.5.3
https://joekuan.wordpress.com/2012/04/26/create-a-password-prompt-dialog-box-on-extjs-4/
var msgbox = Ext.Msg.prompt('Password...
Old thread...
An other solution that works under Extjs 6.5.3
https://joekuan.wordpress.com/2012/04/26/create-a-password-prompt-dialog-box-on-extjs-4/
var msgbox = Ext.Msg.prompt('Password...
I've tried it, but my app is little more complicated.
I build a dynamic menu in a view.
createMenuItem: function(record) {
menuItem = Ext.create('Ext.menu.Item', {
...
No, it's the onRestException function of the proxy of the store.
That's why I gave additional explanations, so that there is no confusion
Hello,
In both case, there's an error message :
TypeError: me.redirectTo is not a function
TypeError: this.redirectTo is not a function
When i debug under Firefox, the "me" or the "this"...
I've a route to a login form defined in the app controller.
I've a store with a proxy.
When there's is RestException for the proxy, i ask the user if he wants to connect again. So i need to...
Old thread but if someone is searching and comes here....
If you want to have a server side validation, return the id of your checkboxgroup in the json errors :
{success: false, errors:...