Please use the 'onEdit' event to create your validation type, you will be able to get the current editing row data.
$('#tt').edatagrid({
onEdit:function(index,row){
var ed = $(this).edatagrid('getEditor',{index:index,field:'zone_code'});
$(ed.target).validatebox({
validType:...
})
}
});