Preguntas y respuestas de entrevista mas solicitadas y pruebas en linea
Plataforma educativa para preparacion de entrevistas, pruebas en linea, tutoriales y practica en vivo

Desarrolla tus habilidades con rutas de aprendizaje enfocadas, examenes de practica y contenido listo para entrevistas.

WithoutBook reune preguntas de entrevista por tema, pruebas practicas en linea, tutoriales y guias comparativas en un espacio de aprendizaje responsivo.

Preparar entrevista

ExtJS preguntas y respuestas de entrevista

Pregunta 21. How to find no of records in a store?

Using 

store.getCount() : Gets the number of cached records.
store.getTotalCount() : Gets the total number of records in the dataset as returned by the server.

Es util? Agregar comentario Ver comentarios
 

Pregunta 22. How to handle exception while loading datastore?

Using loadexception event.
syntax: store.loadexception() : Fires if an exception occurs in the Proxy during loading.
use beforeload : ( Store this, Object options ) : Fires before a request is made for a new data object. If the beforeload handler returns false the load action will be canceled.
syntax:
store.on('loadexception', function(event, options, response, error) {
alert("Handling the error");
event.stopEvent();
});

Es util? Agregar comentario Ver comentarios
 

Pregunta 23. How to handle updates for store changes?

Use store.commitChanges()

Es util? Agregar comentario Ver comentarios
 

Pregunta 24. What is the purpose of each() in store?

Calls the specified function for each of the Records in the cache
each( Function fn, [records Object] )

Es util? Agregar comentario Ver comentarios
 

Pregunta 25. How to get modified records using store object?

store.getModifiedRecords() : Gets all records modified since the last commit.

Es util? Agregar comentario Ver comentarios
 

Lo mas util segun los usuarios:

Copyright © 2026, WithoutBook.