Hey Ankush,I once encountered the same scenario where I didn't want
author to enter any input , only allowing him to select the path, I
created the javascript for that which I included in
"cq.authoring.dialog" clientlib category.Here is the javascript code
sample that can help you :$(document).on("dialog-ready", function() {
var pathReadonly = function() { setTimeout(function() {
$(".path-readonly").find(".js-coral-pathbrowser-input").each(function()
{ $(this).attr("readonly", "readonly"); }); }...