Я пытаюсь открыть файл при щелчке поля в CRM. Я получаю «Отказано в доступе» при вызове функции.
var FileTextBox = crmForm.all.new_testdoc;
FileTextBox.style.color = "#0000ff";
FileTextBox.style.textDecoration = "underline";
FileTextBox.attachEvent("onclick", openDocument);
function openDocument()
{
if (FileTextBox.DataValue != null)
{
window.open("FileTextBox");
}
}
Данные, содержащиеся в поле crm: 'c: \ test \ test.txt'
Есть идеи?
Спасибо