import wixData from 'wix-data'; $w.onReady(function () { // Add an event handler to the search button $w("#searchButton").onClick(() => { // Get the search query entered by the user let searchQuery = $w("#Input").value; // Perform the search query performSearch(searchQuery); }); }); // Function to perform the search function performSearch(query) { // Clear previous search results $w("#searchResults").text = ""; // Perform a case-insensitive search across all relevant fields in the CMS collection wixData.query(“Interview”) .contains(“Candidate Name", query) .find() .then((results) => { // Display the search results if (results.items.length > 0) { // Display the search results $w("#searchResults").text = JSON.stringify(results.items); } else { // If no results were found, display a message to the user $w("#searchResults").text = "No Candidate Found.”; } }) .catch((err) => { // Handle any errors that occur during the search console.error("Error occurred during search: ", err); }); }
top of page

No Collections Here

Sort your projects into collections. Click on "Manage Collections" to get started

Our Services

Our core business area spans across Embedded Software Solutions for Cyber Security, Functional Safety, ASIC drivers, Software & System Engineering, Verification & Validation services. We offer expertise to define & deploy the state-of-the-art Process, Methods & tools for Software Engineering.

bottom of page