2016-03-30 197 views
1

我正在使用以下link顯示驗證錯誤消息。更改驗證錯誤消息

因爲我使用這樣的:驗證長度我收到錯誤消息:

Text length does not satisfy specified text range,但我想改變這個消息:

Zip code is not servicable

<input placeholder="Enter your PIN Code" class="input-text 
    <?php if ($this->isFieldRequired('postcode')):?> 
     required-entry 
    <?php endif;?> 

    validate-length maximum-length-6 minimum-length-6 validate-digits" 
    type="text" 
    id="estimate_postcode" 
    name="estimate[postcode]" 
    value="<?php echo $this->htmlEscape($this->getFieldValue('postcode')) ?>" 
    onkeydown="if (event.keyCode == 13) { return false;}" 
/> 

回答

1

製作屬於您自己的JavaScript文件:

例如override.js並將其放入t他是你的項目的文件夾。

然後在override.js文件編寫代碼:

Validation.add('validate-length', 'Zip code is not servicable') 

在您需要添加的js文件與addJs方法佈局文件:

<action method="addJs"><script>override.js</script></action> 
+0

我會嘗試這與讓你懂。 – fresher

+0

你有沒有得到它的工作? – Gilko

+0

非常感謝.... – fresher

相關問題