[quote="NineRays"]Please let me know:
1. This problem appears when you select any value from list?
Yes
2. Could you send me this table (that used as Lookupsource) to test and (if will be necessary) fix bug
here is script for table:
CREATE TABLE [dbo].[ParamOperators] (
[ParamOperatorId] [tinyint] IDENTITY (1, 1) NOT NULL ,
[ParamOperator] [varchar] (25) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL ,
[Operator] [varchar] (25) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
) ON [PRIMARY]
GO
Here is data:
1,"Equals","="
3,"Less Than","<"
4,"Less Than or Equal To","<="
5,"More Than",">"
6,"More Than or Equal To","=>"
7,"LIKE","LIKE"
8,"LIKE (Begins With)","LIKE ""{0}%"""
9,"LIKE (Ends With)","LIKE ""%{0}"""
Thanks for your help.