This is a migrated thread and some comments may be shown as answers.

use 'if'

8 Answers 1455 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Błażej
Top achievements
Rank 1
Błażej asked on 15 Jul 2011, 10:08 AM
Hi,

I want to use 'if' in value of textbox item.
 It's possible ?

8 Answers, 1 is accepted

Sort by
0
Steve
Telerik team
answered on 15 Jul 2011, 10:48 AM
Hello Błażej,

The available functions that you can use in Expression are listed in the Functions help article. For your case you can use the IIf(expression, ReturnedIfTrue, ReturnedIfFalse).

Greetings,
Steve
the Telerik team

Register for the Q2 2011 What's New Webinar Week. Mark your calendar for the week starting July 18th and book your seat for a walk through of all the exciting stuff we will ship with the new release!

0
Błażej
Top achievements
Rank 1
answered on 15 Jul 2011, 11:00 AM
can you help me ?
I've got two int getting from DataBase ...
if (secondInt == NULL )
textbox.value = firstInt / SecondInt ;
else
textbox.value = firstInt ;

Please give some example .
0
Błażej
Top achievements
Rank 1
answered on 15 Jul 2011, 11:11 AM
I didn't see your answer ...
thanks !
0
Michel
Top achievements
Rank 1
answered on 23 Aug 2012, 06:49 AM
try:
=IIF(Fields.secondInt, firstInt / SecondInt, firstInt)
0
Anil
Top achievements
Rank 1
answered on 09 May 2014, 11:04 AM
Hi,

I am very much new to Telerik, im using the condition for a textbox value expression

=Iif(Parameters.UnitType.Value == "some string", some_value1, some_value2)

And this is giving an error.
not valid:
Syntax error: Missing operand before '=' operator

 Kindly let me know where i am going wrong.
0
Nasko
Telerik team
answered on 12 May 2014, 03:36 PM
Hello Anil,

The comparison operator for equality is a "=" sign. Try changing the expression to:

=Iif(Parameters.UnitType.Value = "some string", some_value1, some_value2)

For more information, please refer to the Expression Operators help article.

Regards,
Nasko
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
0
Madelein
Top achievements
Rank 1
answered on 29 Jul 2014, 11:59 AM
Hello,

i've got a description field in my report and now i want to highlight the line any of the predefined descriptions comes up in the report.  This is what i've got... please help me as i do not know how further to change my Expression to set the background if the Expression returns true:

iIF((Fields.PADESC Like "A SA RH SE SH BLD%")  Or ( Fields.PADESC Like ="A SA LH SE SH BLD%") Or ( Fields.PADESC Like ="XYZ%") Or ( Fields.PADESC Like ="ABC%")) *Then change backround to yellow* 
0
Nasko
Telerik team
answered on 01 Aug 2014, 10:17 AM
Hello Madelein,

The described scenario can be achieved with the Conditional Formatting functionality. Conditional formatting lets you dynamically style report items based on rules that you define in the Conditional Formatting Rules Dialog. For more information on how to use this functionality, please refer to the Conditional Formatting help article.

Regards,
Nasko
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
Tags
General Discussions
Asked by
Błażej
Top achievements
Rank 1
Answers by
Steve
Telerik team
Błażej
Top achievements
Rank 1
Michel
Top achievements
Rank 1
Anil
Top achievements
Rank 1
Nasko
Telerik team
Madelein
Top achievements
Rank 1
Share this question
or