forked from extnet/Ext.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServiceMessages.cs
More file actions
63 lines (53 loc) · 2.2 KB
/
ServiceMessages.cs
File metadata and controls
63 lines (53 loc) · 2.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/********
* @version : 2.1.1 - Ext.NET Pro License
* @author : Ext.NET, Inc. http://www.ext.net/
* @date : 2012-12-10
* @copyright : Copyright (c) 2007-2012, Ext.NET, Inc. (http://www.ext.net/). All rights reserved.
* @license : See license.txt and http://www.ext.net/license/.
********/
using System;
namespace Ext.Net
{
/// <summary>
///
/// </summary>
public partial class ServiceMessages
{
/// <summary>
///
/// </summary>
public const string DEFINE_READER_FOR_PROXY = "Please define Reader for the Proxy (store's Reader is used if proxy is undefined)";
/// <summary>
///
/// </summary>
public const string DEFINE_WRITER_FOR_PROXY = "Please define Writer for the Proxy (store's Writer is used if proxy is undefined)";
/// <summary>
///
/// </summary>
public const string DEFINE_ARRAY_READER = "Please use ArrayReader for binding items which have Array type";
/// <summary>
///
/// </summary>
public const string LAYOUT_AMBIGUITY = "Different layout type is defined in Layout and LayoutConfig properties";
/// <summary>
///
/// </summary>
public const string NON_LAYOUT_CONTROL = "Control with type '{0}' cannot be handled by layout";
/// <summary>
///
/// </summary>
public const string TURN_OFF_AUTOREGISTER = "Please set AutoRegister=false if you plan to use ToScript method of NodeProxy";
/// <summary>
///
/// </summary>
public const string INVALID_DATASOURCE = "TreeStore supports IHierarchicalEnumerable or IHierarchicalDataSource only";
/// <summary>
///
/// </summary>
public const string TREESTORE_INVALID_DATA_BINDING = "Could not bind to the '{0}' property (specified by {1}) while data binding TreeStore. Please check the Bindings fields.";
/// <summary>
///
/// </summary>
public const string ITEMTEMPLATE_FUNCTIONS = "Item template doesn't support functions definitions";
}
}