J
|
Jane 4/25/2008 |
Hi,
if rs("CheckboxFieldName")=1 then row("allowedit") = 0 else row("allowedit") = 1 end if |
N
|
NigelEtienne 4/29/2009 |
How does this work with the inline edit option i.e. can you disable the inline edit option if the checkbox is ticked? |
J
|
Jane 4/29/2009 |
What ASPRunnerPro version do you use? |
N
|
NigelEtienne 4/29/2009 |
What ASPRunnerPro version do you use?
|
J
|
Jane 4/30/2009 |
Hi, if data("CheckboxFieldName")=1 then record("inlineedit_link") = False else record("inlineedit_link") = True end if |
N
|
NigelEtienne 5/5/2009 |
Hi, to hide inline edit link use following code in the List page: After record processed event for ASPRunnerpro 6.0:
|
J
|
jasoncrooke 5/27/2009 |
Hi , How should I go about this in asp runner 5.2 with a text value not a check box. if data("FieldName")="value" then
|
J
|
Jane 5/28/2009 |
Hi, <div {$row.style1}><A id=ieditlink{$row.1recno} onclick="return inlineEdit('{$row.1recno}','{$row.1editlink}');" ...>Inline Edit</A></div>
row("style1") = "style=""display:none""" |
J
|
jasoncrooke 5/28/2009 |
Hi, you need to edit HTML code manually to show/hide InlineEdit in ASPRunnerPro 5.2. Here is a sample: Then hide link using this code:
|
![]() |
Sergey Kornilov admin 5/28/2009 |
Hi, to hide inline edit link use following code in the List page: After record processed event for ASPRunnerpro 6.0: |
J
|
jasoncrooke 5/28/2009 |
|
J
|
Jane 5/29/2009 |
Please check List page: After record processed event on the Events tab. |