Hello,
I would like to add some data manually in a wix array repeater element
without a dataset or any data from database.
I just want to modify it in edit mode and then save.
As easy as an excel table! 
If any body have a workaround, let me know
Regards,

I don’t know how you want to save the data without a database, but you can add items to the repeater independently of the collection.
$('#repeater').onItemReady(($item, itemData, index)=>{
$w("#repeater").data = [];
$w("#repeater").data = [
{
_id: "01",
firstname: "John",
lastname: "Doe"
},
{
_id: "02",
firstname: "Jane",
lastname: "Doe"
},
{
_id: "03",
firstname: "Wix",
lastname: "Doe"
},
]
})
//If you want to add an external item to the repeater with onClick() etc. you can use //the push() function.
let repeater = $w("#repeater").data = [];
repeater.push({
_id: "02",
firstname: "Jane",
lastname: "Doe"
})
Thx for your answer.
I just want to present some text inside a designed array.
This data should not be store in db, only on the view like any text field.
I will wait a bit for an easier options without code.
thx
The code I gave above is exactly for this. You just change it like this. Well it’s your decision whether to do it or not but I’m leaving this answer for those who ask the same thing. Good luck.
$w.onReady(function () {
$w("#table").rows = [];
$w("#table").rows = [
{ _id: "01", date: "10h30/12h", Lundi: "JUDO", Mardi: "10h PPG JUDO", Mecredi: "JUDO"},
{ _id: "02", date: "12h/14h", Lundi: "Pause midi au Dojo", Mardi: "Pause midi au Dojo", Mecredi: "Pause midi a la maison"},
{ _id: "03", date: "10h30/12h", Lundi: "JUDO", Mardi: "10h PPG JUDO", Mecredi: "JUDO"},
{ _id: "04", date: "10h30/12h", Lundi: "JUDO", Mardi: "10h PPG JUDO", Mecredi: "JUDO"}
];
});