Wix Page Code Editor

Hi Guys.
Sorry to bother you, I try to solve most thing on my own, but this one has got me stumped.
My code page editor was working as it should be.
I have an input element which sorts the search for my dataset. ( all works nicely )
I moved it to from my page to my page header, BIG mistake.
all the code now did not work, ( I expect header stuff goes elsewhere)
I put it back on my page and now i can not cut, copy, or paste anything in my code page window. ( my right click button no long functions on the code editor part, it fine on the site page area, just not on the code page part.
Thanks for any help in advance
GB

I have a couple of other sites. it seems this is code Editor specific, as it is the same problem on all my different domains/sites. Even if highlight some code in the code editor window the tool-bar copy icon does not turn black to indicate the clipboard has the text. very frustrating. Its probably something simple like a key combination I pressed by mistake or something.

cheers again
GB

Hi,
In order for us to successfully review this matter further and properly assist you, please send us a video of the issue using screencast . Simply recreate the issue while recording the steps. Add the screencast.com URL to your response.

Thanks,
Tal.

Hi Tal.
I also have a table connected to my dataset. The dataset is set to number of Items to display = 30. I set it up for cell not row, when I click on my chosen cell the contents are displayed in a text box. my database is set on manual resize so is not to large, and displays 10 items at a time. My database contains 15 items

export function table1_cellSelect(event, $w) {
$w(“#table1”).onCellSelect((event, $w) => {
let cellData = event.cellData;
$w(“#text1”).text = cellData;
});
}
All works fine. I can then highlight and copy with windows right mouse click and paste it somewhere else I need.
Everything is good.
EXCEPT. when I now scroll to the second page and display the remaining 5 items, I click on a cell, (any cell) and it no longer transfers my cells contents to my text box.
Any thoughts?
Thanks Tal

Hi,
I’m not sure that I fully understand what’s the issue. Can you please send us a screencast and the site URL so that I can have a look? The instructions mentioned above.

Thanks,
Tal.

Resurrecting an old thread because we’re having the same issue. We’ve connected a dataset to a table with multiple pages, and the click function for onCellSelect does not work if you go to any page except page 1 on the table.