Pertanyaan dan Jawaban Wawancara Paling Populer & Tes Online
Platform edukasi untuk persiapan wawancara, tes online, tutorial, dan latihan langsung

Bangun keterampilan dengan jalur belajar terfokus, tes simulasi, dan konten siap wawancara.

WithoutBook menghadirkan pertanyaan wawancara per subjek, tes latihan online, tutorial, dan panduan perbandingan dalam satu ruang belajar yang responsif.

Prepare Interview

ExtJS Pertanyaan dan Jawaban Wawancara

Ques 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.

Apakah ini membantu? Add Comment View Comments
 

Ques 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();
});

Apakah ini membantu? Add Comment View Comments
 

Ques 23. How to handle updates for store changes?

Use store.commitChanges()

Apakah ini membantu? Add Comment View Comments
 

Ques 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] )

Apakah ini membantu? Add Comment View Comments
 

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

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

Apakah ini membantu? Add Comment View Comments
 

Most helpful rated by users:

Hak Cipta © 2026, WithoutBook.