1
How To Find Element Clicket In chosen Event
Question asked by Majid Gorgin - 8/2/2023 at 11:10 PM
Unanswered
This is my html dom
 <input type="text" placeholder="choise" name="ImageArtile" onclick="fileManager.show('ImageArtile')" />
 function fileManagerChosen(sender,e ) {
        console.log(sender);
        var json = JSON.stringify(e, "", 3);
        let jsonData = JSON.parse(json);
        const clickedElement = event.target;
        if (jsonData.isCanceled) {
            console.log("Canceled!");
            return;
        }
        //Pretty print the chosen info (from event object) when it changes
       //How to get tag input click after get fullpath to value of input tag
       
        alert("Chosen event:\n" + json);
        console.log(jsonData);
        var desc = jsonData.eventName;
        var isCancel = jsonData.isCanceled;
        var fullPath = jsonData.items[0].fullPath;
        console.log(desc);
        console.log(isCancel);
        console.log(fullPath);

    }

Reply to Thread