Hai, i have a CommandItemTemplate at my grid, and i want to add CommandItem Refresh.
i've done it like this:
<
MasterTableView
AutoGenerateColumns
=
"False"
DataKeyNames
=
"MemoID"
ClientDataKeyNames
=
"MemoID"
Width
=
"100%"
CommandItemDisplay
=
"Top"
PageSize
=
"5"
NoMasterRecordsText
=
"No Record Selected"
>
<
CommandItemTemplate
>
<
a
href
=
"#"
onclick
=
"return ShowInsertFormSender();"
>Add New Memo</
a
>
</
CommandItemTemplate
>
<
CommandItemSettings
ShowRefreshButton
=
"true"
/>
</
MasterTableView
>
but it doesn't show the Refresh Button. How to show it?
Thank you