Main List, Gelişmiş Arama

Fatih Şahin - Sep 14 '22 - - Dev Community
<row>
<cell colspan="6">
    <control Caption="Gelişmiş Arama" FieldName = "AdvancedSearch;Detail_DcardName" Focused="true" ControlType = "MemoEdit" Width="365">
        <ClientSideEvents KeyDown="function(s, e) 
                                                                            {
                                                                                    if (e.htmlEvent.keyCode == 13)
                                          {
                                           btnSearch.DoClick();
                                           s.SetFocus();
                                          }
                                                                            }"></ClientSideEvents>
    </control>
</cell>
</row>
Enter fullscreen mode Exit fullscreen mode

Detay objeden bir alan ise "Detail_" eklemek gerekmektedir. Ör. Detail_DcardName

LIKE '%substring%' şeklinde çalışır.

Image description

Image description

. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .