new Firebase('https://YOUR.firebaseio.com/path/to/edit').set('new value');
I have an application with multiple records. In my firebase app dashboard -> data - I am getting following message within a box "Due to the number of records being displayed at this location, the data viewer is in read-only/non-realtime mode to increase browser performance. Click on a key with fewer records to see a realtime view."I want to delete/edit few records directly from dashboard but it wouldn't let me. How can I resolve this issue?
--
You received this message because you are subscribed to the Google Groups "Firebase Google Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to firebase-tal...@googlegroups.com.
To post to this group, send email to fireba...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/firebase-talk/178ba78a-542e-431b-ad32-bb27048eb81c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To view this discussion on the web visit https://groups.google.com/d/msgid/firebase-talk/CAJCyStd0MCvRS53-vC7ERLKFJT6Fy6metk1%3DNJ914eN7opj-UQ%40mail.gmail.com.
mCart.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
mDatabaseReference.removeValue();
}
});