DEV Community

Fatih Şahin
Fatih Şahin

Posted on • Updated on

Main List, Gelişmiş Arama

<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

Top comments (0)