We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

blink row in ggc

Hi,
I am using syncfusion ggc,
in this if i pass the ID(This is column name) in the textbox(left to button blinking) in the attached code... then row that contains that [ID] will start blinking...

But i want that my row should blink when when i passed the first name ...ie row should start blinking where [FirstName] gets matched with the value of textbox

eg:
//The following code is working fine for ID:-

if (AID.Length > 1) AID += " Or ";
AID += "[ID]= '" + (string)key + "'";

here (string)key could be 1,2,----n

//The Following code is not working when i pass the string value ie [FirstName]


if (AID.Length > 1) AID += " Or ";
AID += "[Firstname]= '" + "Luthher"+ "'";


Plz let me know if u know the solution

I will be thankful for u

GGC.zip

1 Reply

HA haneefm Syncfusion Team October 26, 2007 03:12 PM UTC

Hi Pankaj,

Instead of using the '=' operator, try using the 'Like' operator to format the grid using GridConditionalFormatDescriptor. The following code blinks the row in a grid whose FirstName values equal to 'Luthher'’.

if (AID.Length > 1) AID += " Or ";
AID += "[Firstname]= '" + "Luthher"+ "'";
blinkDescriptor.Expression = AID;

Best regards,
Haneef

Loader.
Live Chat Icon For mobile
Up arrow icon